chess_rpg_backend/nginx.conf

45 lines
1.3 KiB
Nginx Configuration File

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;
}