1 files changed, 23 insertions(+), 22 deletions(-)
M nginx.conf
M nginx.conf => nginx.conf +23 -22
@@ 1,30 1,31 @@
-user www;
-worker_processes auto;
+user nginx;
+worker_processes auto;
-daemon off;
+error_log /var/log/nginx/error.log notice;
+pid /run/nginx.pid;
-error_log /var/log/nginx/error.log warn;
events {
- worker_connections 1024;
+ worker_connections 1024;
}
+
http {
- include /etc/nginx/mime.types;
- default_type application/octet-stream;
- sendfile on;
- access_log /var/log/nginx/access.log;
- keepalive_timeout 3000;
- gzip on;
- server {
- listen 80;
- root /data/www;
- index index.html;
- server_name www.m1kadev.nl;
- client_max_body_size 32m;
- error_page 500 502 503 503 /50x.html;
- location = /50x.html {
- root /var/lib/nginx/html;
- }
- }
+ include /etc/nginx/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"';
+
+ access_log /var/log/nginx/access.log main;
+
+ sendfile on;
+ #tcp_nopush on;
+
+ keepalive_timeout 65;
+
+ #gzip on;
+
+ include /etc/nginx/conf.d/*.conf;
}