rDrama/nginx.conf

103 lines
2.3 KiB
Nginx Configuration File
Raw Permalink Normal View History

2023-01-01 02:10:25 +00:00
server {
server_name localhost;
client_max_body_size 100m;
listen 80;
listen [::]:80;
proxy_set_header Host $http_host;
include includes/headers;
2023-02-09 08:11:34 +00:00
proxy_set_header X-Forwarded-For $remote_addr;
2023-01-01 02:10:25 +00:00
location / {
2023-03-17 13:09:51 +00:00
proxy_pass http://localhost:5000/;
include includes/headers;
2023-01-01 02:10:25 +00:00
}
location /socket.io {
proxy_set_header Host $http_host;
2024-04-12 07:39:29 +00:00
proxy_set_header X-Forwarded-For $remote_addr;
2023-01-01 02:10:25 +00:00
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;
include includes/headers;
2023-01-01 02:10:25 +00:00
}
2024-03-10 18:58:43 +00:00
location =/reply {
2023-09-26 20:05:39 +00:00
proxy_pass http://localhost:5001/reply;
include includes/headers;
}
2023-09-24 22:12:42 +00:00
2023-01-01 02:10:25 +00:00
location =/offline.html {
alias /d/files/templates/errors/offline.html;
include includes/headers;
2023-01-01 02:10:25 +00:00
}
2023-02-20 18:34:58 +00:00
error_page 404 = /404.html;
location =/404.html {
alias /d/files/templates/errors/rDrama/404.html;
include includes/headers;
2023-02-20 18:34:58 +00:00
add_header Cache-Control "no-store";
}
2023-01-01 02:10:25 +00:00
error_page 502 = /502.html;
location =/502.html {
alias /d/files/templates/errors/rDrama/502.html;
include includes/headers;
2023-01-01 02:10:25 +00:00
add_header Cache-Control "no-store";
}
2023-03-17 13:09:51 +00:00
location /images/ {
alias /images/;
include includes/serve-static;
2023-01-21 10:36:21 +00:00
}
2023-03-17 13:09:51 +00:00
location /chat_images/ {
alias /chat_images/;
include includes/serve-static;
2023-01-01 02:10:25 +00:00
}
2023-03-17 13:09:51 +00:00
location /videos/ {
alias /videos/;
include includes/serve-static;
2023-01-01 02:10:25 +00:00
}
2023-03-17 13:09:51 +00:00
location /audio/ {
alias /audio/;
include includes/serve-static;
2023-01-01 02:10:25 +00:00
}
2023-03-17 13:09:51 +00:00
location /songs/ {
alias /songs/;
include includes/serve-static;
proxy_hide_header Cache-Control;
add_header Cache-Control "max-age=2678400";
2023-01-01 02:10:25 +00:00
}
2023-03-17 13:09:51 +00:00
location /asset_submissions/ {
alias /asset_submissions/;
include includes/serve-static;
2023-01-01 02:10:25 +00:00
}
2023-03-17 13:09:51 +00:00
location /archives/ {
alias /archives/;
include includes/serve-static;
2023-01-01 02:10:25 +00:00
}
2023-03-17 13:09:51 +00:00
location /assets/ {
alias /d/files/assets/;
include includes/serve-static;
2023-01-01 02:10:25 +00:00
}
2023-03-17 13:09:51 +00:00
location /i/ {
alias /d/files/assets/images/;
include includes/serve-static;
2023-01-01 02:10:25 +00:00
}
2023-03-17 13:09:51 +00:00
location /e/ {
alias /d/files/assets/images/emojis/;
include includes/serve-static;
2023-01-01 02:10:25 +00:00
}
location =/robots.txt {
alias /d/files/assets/robots.txt;
include includes/serve-static;
2023-01-01 02:10:25 +00:00
}
location =/icon.webp {
alias /d/files/assets/images/rDrama/icon.webp;
include includes/serve-static;
2023-01-01 02:10:25 +00:00
}
location =/favicon.ico {
alias /d/files/assets/images/rDrama/icon.webp;
include includes/serve-static;
2023-01-01 02:10:25 +00:00
}
}