diff options
author | Silvino Silva <silvino@bk.ru> | 2017-03-01 21:27:03 +0000 |
---|---|---|
committer | Silvino Silva <silvino@bk.ru> | 2017-05-13 16:40:44 +0100 |
commit | 079066bc153f3a6fe84b5da0b8fa8e584641b46d (patch) | |
tree | 5ed282dccdd6b8004a86f9c765843f0f5852f9c9 /tools/conf/etc/nginx | |
parent | 40fc398cab05e1ae769554a50fb423ca38c3bfb6 (diff) | |
download | doc-079066bc153f3a6fe84b5da0b8fa8e584641b46d.tar.gz |
overall revision
Diffstat (limited to 'tools/conf/etc/nginx')
-rw-r--r-- | tools/conf/etc/nginx/nginx.conf | 13 |
1 files changed, 2 insertions, 11 deletions
diff --git a/tools/conf/etc/nginx/nginx.conf b/tools/conf/etc/nginx/nginx.conf index ddbdee6..8fca293 100644 --- a/tools/conf/etc/nginx/nginx.conf +++ b/tools/conf/etc/nginx/nginx.conf @@ -3,7 +3,7 @@ # -user nginx; +user www; worker_processes auto; error_log /var/log/nginx/error.log; @@ -20,16 +20,6 @@ http { include mime.types; default_type application/octet-stream; - ## - # SSL Settings - ## - ssl_protocols TLSv1 TLSv1.1 TLSv1.2; # Dropping SSLv3, ref: POODLE - ssl_prefer_server_ciphers on; - - # ssl on; - ssl_certificate /etc/ssl/certs/nginx.crt; - ssl_certificate_key /etc/ssl/keys/nginx.key; - #log_format main '$remote_addr - $remote_user [$time_local] "$request" ' # '$status $body_bytes_sent "$http_referer" ' # '"$http_user_agent" "$http_x_forwarded_for"'; @@ -40,6 +30,7 @@ http { sendfile on; #tcp_nopush on; + client_max_body_size 8M; keepalive_timeout 65; client_body_timeout 12; client_header_timeout 12; |