45 lines
1.0 KiB
Nginx Configuration File
45 lines
1.0 KiB
Nginx Configuration File
server {
|
|
server_name rdrama.net;
|
|
client_max_body_size 100m;
|
|
listen 80;
|
|
listen [::]:80;
|
|
proxy_set_header Host $http_host;
|
|
add_header Referrer-Policy "same-origin";
|
|
add_header Strict-Transport-Security "max-age=31536000; includeSubDomains; preload";
|
|
add_header X-Frame-Options "deny";
|
|
add_header X-Content-Type-Options "nosniff";
|
|
|
|
location / {
|
|
proxy_pass http://localhost:5000/;
|
|
}
|
|
location /socket.io {
|
|
proxy_set_header Host $http_host;
|
|
proxy_http_version 1.1;
|
|
proxy_buffering off;
|
|
proxy_set_header Upgrade $http_upgrade;
|
|
proxy_set_header Connection "Upgrade";
|
|
proxy_pass http://localhost:5001/socket.io;
|
|
}
|
|
location /chat {
|
|
proxy_pass http://localhost:5001/chat;
|
|
}
|
|
|
|
location /images/ {
|
|
include includes/serve-static;
|
|
}
|
|
location /videos/ {
|
|
include includes/serve-static;
|
|
}
|
|
location /audio/ {
|
|
include includes/serve-static;
|
|
}
|
|
location /asset_submissions/ {
|
|
include includes/serve-static;
|
|
}
|
|
|
|
error_page 502 = /error_page/502.html;
|
|
location /error_page/ {
|
|
alias /rDrama/files/templates/errors/rDrama/;
|
|
}
|
|
}
|