puppet-apache
puppet-apache copied to clipboard
Apache Puppet Module
This would be a great/easy option to be able to add.
Something like this (based on `vhost-ssl.template`) ``` # File Managed by Puppet ServerAdmin ServerName DocumentRoot ErrorLog /-error_log CustomLog /-access_log common SSLEngine on SSLProtocol all -SSLv2 -SSLv3 SSLCipherSuite ALL:!aNULL:!eNULL:!SSLv2:!LOW:!EXP:!MD5:@STRENGTH SSLCertificateFile /ssl.crt/server.crt...
apache/manifests/init.pp: ``` $vdir = $::operatingsystem ? { /(?i:Ubuntu|Debian|Mint)/ => "${apache::config_dir}/sites-available", SLES => "${apache::config_dir}/vhosts.d", default => "${apache::config_dir}/conf.d", } ```
When you create a vhost like `apache::vhost { 'www.example42.com': port => 82, } ` On RedHat a Namevirtualhost directive is automaticly created with *:80 as value. Here apache::listen is call...
Hello, As I mentioned on Twitter, I'm having 2 small issues while using this apache module for a Vagrant box, with Ubuntu 12.04 . The apache version being installed is...
Hi, I just found that the $process_users parameter is ignored. The only place it's used in is the process monitoring. Under Ubuntu the file /etc/apache2/envvars is used to define what...
I've been trying to figure out why the apache::redhat class is included on centos/redhat systems. It defines an empty file which sets named hosts to work on port 80. In...