Skip to content

open-dai/puppetlabs-apache

This branch is 4327 commits behind puppetlabs/puppetlabs-apache:main.

Folders and files

NameName
Last commit message
Last commit date
Apr 16, 2012
Aug 9, 2012
Aug 27, 2012
Aug 24, 2012
Aug 23, 2012
Aug 17, 2012
Aug 17, 2012
Aug 17, 2012
Mar 13, 2012
Aug 24, 2012
Mar 1, 2012
Aug 24, 2012
Aug 22, 2012
Aug 17, 2012

Repository files navigation

Puppetlabs module for Apache

Apache is widely-used web server and this module will allow to configure various modules and setup virtual hosts with minimal effort.

Basic usage

To install Apache

class {'apache':  }

To install the Apache PHP module

class {'apache::mod::php': }

Configure a virtual host

You can easily configure many parameters of a virtual host. A minimal example is:

apache::vhost { 'www.example.com':
    priority        => '10',
    vhost_name      => '192.0.2.1',
    port            => '80',
}

A slightly more complicated example, which moves the docroot and logfile to an alternate location, might be:

apache::vhost { 'www.example.com':
    priority        => '10',
    vhost_name      => '192.0.2.1',
    port            => '80',
    docroot         => '/home/www.example.com/docroot/',
    logroot         => '/srv/www.example.com/logroot/',
    serveradmin     => 'webmaster@example.com',
    serveraliases   => ['example.com',],
}

Notes

Since Puppet cannot ensure that all parent directories exist you need to manage these yourself. In the more advanced example above, you need to ensure that /home/www.example.com and /srv/www.example.com directories exist.

Contributors

  • A cast of hundreds, hopefully you too soon

Copyright and License

Copyright (C) 2012 Puppet Labs Inc

Puppet Labs can be contacted at: info@puppetlabs.com

Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at

http://www.apache.org/licenses/LICENSE-2.0

Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License.