diff --git a/nginx.conf b/nginx.conf new file mode 100644 index 0000000..e538abf --- /dev/null +++ b/nginx.conf @@ -0,0 +1,44 @@ +server { + # Base settings for client body size + client_max_body_size 64M; + client_body_timeout 10; + send_timeout 10; + keepalive_timeout 10; + client_header_timeout 10; + client_body_buffer_size 64M; + client_header_buffer_size 64M; + client_max_header_size 64M; + + location /static { + allow all; + autoindex off; + root /var/www; + } + + location /media { + allow all; + autoindex off; + root /var/www; + } + + location / { + allow all; + proxy_pass http://127.0.0.1:8080; + proxy_set_header X-Real-IP $remote_addr; + proxy_set_header Host $host; + proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for; + add_header P3P 'CP="ALL DSP COR PSAa PSDa OUR NOR ONL UNI COM NAV"'; + + # WebSocket support + proxy_http_version 1.1; + proxy_set_header Upgrade $http_upgrade; + proxy_set_header Connection "upgrade"; + } + + listen 443 ssl; + + # ssl settings + # ssl_certificate /etc/nginx/ssl/nginx.crt; + # ssl_certificate_key /etc/nginx/ssl/nginx.key; + # ssl_protocols TLSv1 TLSv1.1 TLSv1.2; +}