puppet-nginx
puppet-nginx copied to clipboard
Basic module for configuring nginx via puppet
`templates/fcgi_site.erb` expects to be able to iterate on string variables with `each`. In Ruby 1.8, this iterated over lines. That's deprecated by Ruby 1.9. Specifically, `templates/fcgi_site.erb` tries to iterate on...
Change the determining factor for deciding to use SSL. This allows a user to put more than just the port into the listen directive. eg: nginx::fcgi::site { 'default-ssl': listen =>...
I'd like to be able to do: ``` puppet file{ '/etc/nginx/sites-enabled': ensure => directory, recurse => true, purge => true, } ``` This fails because the symlinks in this directory...