diff options
author | Silvio Rhatto <rhatto@riseup.net> | 2016-06-17 13:19:00 -0300 |
---|---|---|
committer | Silvio Rhatto <rhatto@riseup.net> | 2016-06-17 13:19:00 -0300 |
commit | af7285abc43915500e46b936cdfd41162d5923e4 (patch) | |
tree | f8d87541850c23bb0e5c86e13bfdc528d831a09d | |
parent | 7a288a10056745a603869daf148d68bfe68ab723 (diff) | |
download | puppet-nginx-af7285abc43915500e46b936cdfd41162d5923e4.tar.gz puppet-nginx-af7285abc43915500e46b936cdfd41162d5923e4.tar.bz2 |
Removes nginx.conf.puppetmaster.erb
-rw-r--r-- | templates/nginx.conf.puppetmaster.erb | 33 |
1 files changed, 0 insertions, 33 deletions
diff --git a/templates/nginx.conf.puppetmaster.erb b/templates/nginx.conf.puppetmaster.erb deleted file mode 100644 index abf676f..0000000 --- a/templates/nginx.conf.puppetmaster.erb +++ /dev/null @@ -1,33 +0,0 @@ -user www-data; -worker_processes <%= worker_processes %>; - -error_log /var/log/nginx/error.log; -pid /var/run/nginx.pid; - -events { - worker_connections <%= worker_connections %>; -} - -http { - # see http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=524785 - # http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=547722 - server_names_hash_bucket_size 100; - - include /etc/nginx/mime.types; - default_type application/octet-stream; - - #access_log /var/log/nginx/access.log; - access_log /dev/null; - - sendfile on; - #tcp_nopush on; - - #keepalive_timeout 0; - keepalive_timeout 65; - tcp_nodelay on; - - gzip on; - - include /etc/nginx/conf.d/*.conf; - include /etc/nginx/sites-enabled/*; -} |