Search icon CANCEL
Subscription
0
Cart icon
Your Cart (0 item)
Close icon
You have no products in your basket yet
Save more on your purchases! discount-offer-chevron-icon
Savings automatically calculated. No voucher code required.
Arrow left icon
Explore Products
Best Sellers
New Releases
Books
Videos
Audiobooks
Learning Hub
Newsletter Hub
Free Learning
Arrow right icon
timer SALE ENDS IN
0 Days
:
00 Hours
:
00 Minutes
:
00 Seconds
Arrow up icon
GO TO TOP
Puppet 3 Cookbook

You're reading from   Puppet 3 Cookbook An essential book if you have responsibility for servers. Real-world examples and code will give you Puppet expertise, allowing more control over servers, cloud computing, and desktops. A time-saving, career-enhancing tutorial

Arrow left icon
Product type Paperback
Published in Aug 2013
Publisher Packt
ISBN-13 9781782169765
Length 274 pages
Edition 2nd Edition
Languages
Tools
Arrow right icon
Author (1):
Arrow left icon
John Arundel John Arundel
Author Profile Icon John Arundel
John Arundel
Arrow right icon
View More author details
Toc

Table of Contents (16) Chapters Close

Puppet 3 Cookbook
Credits
About the Author
About the Reviewers
www.PacktPub.com
Preface
1. Puppet Infrastructure FREE CHAPTER 2. Puppet Language and Style 3. Writing Better Manifests 4. Working with Files and Packages 5. Users and Virtual Resources 6. Applications 7. Servers and Cloud Infrastructure 8. External Tools and the Puppet Ecosystem 9. Monitoring, Reporting, and Troubleshooting Index

Creating Apache virtual hosts


Apache virtual hosts are an ideal place to use Puppet templates, because they generally consist of boilerplate code with just a few different bits of information for each site.

How to do it…

Here's a recipe to manage a simple virtual host:

  1. Create the file modules/apache/manifests/vhost.pp with the following contents:

    # Manage an Apache virtual host
    define apache::vhost($domain='UNSET',$root='UNSET') {
      include apache
    
      if $domain == 'UNSET' {
        $vhost_domain = $name
      } else {
        $vhost_domain = $domain
      }
    
      if $root == 'UNSET' {
        $vhost_root = "/var/www/${name}"
      } else {
        $vhost_root = $root
      }
    
      file { "/etc/apache2/sites-available/${vhost_domain}.conf":
        content => template('apache/vhost.erb'),
        require => Package['apache2-mpm-prefork'],
        notify  => Exec["enable-${vhost_domain}-vhost"],
      }
    
      exec { "enable-${vhost_domain}-vhost":
        command     => "/usr/sbin/a2ensite ${vhost_domain}.conf",
        require     => File["...
lock icon The rest of the chapter is locked
Visually different images
CONTINUE READING
83
Tech Concepts
36
Programming languages
73
Tech Tools
Icon Unlimited access to the largest independent learning library in tech of over 8,000 expert-authored tech books and videos.
Icon Innovative learning tools, including AI book assistants, code context explainers, and text-to-speech.
Icon 50+ new titles added per month and exclusive early access to books as they are being written.
Puppet 3 Cookbook
Register for a free Packt account to unlock a world of extra content!
A free Packt account unlocks extra newsletters, articles, discounted offers, and much more. Start advancing your knowledge today.
Unlock this book and the full library FREE for 7 days
Get unlimited access to 7000+ expert-authored eBooks and videos courses covering every tech area you can think of
Renews at $19.99/month. Cancel anytime
Modal Close icon
Modal Close icon