diff options
author | Jan Dittberner <jandd@cacert.org> | 2020-06-06 01:39:20 +0200 |
---|---|---|
committer | Jan Dittberner <jandd@cacert.org> | 2020-06-06 01:39:20 +0200 |
commit | 77e659af7d75f6dfa44e3dd8e29b2570af615ce0 (patch) | |
tree | bee120bf7cc262779ecd5fec39dfc11d53eb74f7 /sitemodules/profiles | |
parent | 9d77faae67898cb08fb929702ee1fa93c1bc267e (diff) | |
download | cacert-puppet-77e659af7d75f6dfa44e3dd8e29b2570af615ce0.tar.gz cacert-puppet-77e659af7d75f6dfa44e3dd8e29b2570af615ce0.tar.xz cacert-puppet-77e659af7d75f6dfa44e3dd8e29b2570af615ce0.zip |
Use current defaults for nginx configuration
Diffstat (limited to 'sitemodules/profiles')
-rw-r--r-- | sitemodules/profiles/files/sniproxy/nginx.conf | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/sitemodules/profiles/files/sniproxy/nginx.conf b/sitemodules/profiles/files/sniproxy/nginx.conf index 3115551..c27d5a5 100644 --- a/sitemodules/profiles/files/sniproxy/nginx.conf +++ b/sitemodules/profiles/files/sniproxy/nginx.conf @@ -2,8 +2,9 @@ # NEXT PUPPET RUN. # user www-data; -worker_processes 4; -pid /var/run/nginx.pid; +worker_processes auto; +pid /run/nginx.pid; + events { worker_connections 768; } |