diff options
author | punk <punk@libernaut> | 2021-04-29 16:11:04 +0100 |
---|---|---|
committer | punk <punk@libernaut> | 2021-04-29 16:11:25 +0100 |
commit | 9bef2e2b7ea351b6b1cb490597356677db61ff34 (patch) | |
tree | c36ae24aa3c36f6c19284c7d4da7c25a620bfabf /linux/conf/nginx/nginx.conf | |
parent | 6b5cf63d1987889e272643bf7eeb7725df856d11 (diff) | |
parent | 5e601f7ee14830ef645ee3d3b1bcdce7450a5ce3 (diff) | |
download | doc-master.tar.gz |
Diffstat (limited to 'linux/conf/nginx/nginx.conf')
-rw-r--r-- | linux/conf/nginx/nginx.conf | 49 |
1 files changed, 49 insertions, 0 deletions
diff --git a/linux/conf/nginx/nginx.conf b/linux/conf/nginx/nginx.conf new file mode 100644 index 0000000..e757df6 --- /dev/null +++ b/linux/conf/nginx/nginx.conf @@ -0,0 +1,49 @@ +# +# /etc/nginx/nginx.conf - nginx server configuration +# + +user www; +worker_processes auto; + +error_log syslog:server=unix:/dev/log,facility=daemon debug; + +pid /var/run/nginx.pid; + +events { + worker_connections 1024; +} + +http { + include mime.types; + default_type application/octet-stream; + + log_format main '$remote_addr - $remote_user [$time_local] "$request" ' + '$status $body_bytes_sent "$http_referer" ' + '"$http_user_agent" "$http_x_forwarded_for"'; + + sendfile on; + #tcp_nopush on; + + # Allow attach iso to wiki + #client_max_body_size 8M; + client_max_body_size 30M; + #keepalive_timeout 65; + keepalive_timeout 120; + #client_body_timeout 12; + client_body_timeout 24; + #client_header_timeout 12; + client_header_timeout 24; + + send_timeout 65; + + gzip on; + gzip_vary on; + #gzip_proxied any; + gzip_comp_level 9; + # gzip_buffers 16 8k; + # gzip_http_version 1.1; + gzip_types text/plain text/css application/json application/javascript text/xml application/xml application/xml+rss text/javascript; + + include /etc/nginx/sites-enabled/*.conf; +} +# End of file |