mirror of
https://github.com/gurnec/removeddit.git
synced 2026-03-11 08:54:27 +00:00
20 lines
No EOL
310 B
Text
20 lines
No EOL
310 B
Text
server {
|
|
listen 80 default_server;
|
|
listen [::]:80 default_server;
|
|
|
|
root /var/www/removeddit;
|
|
index index.html;
|
|
server_name _;
|
|
|
|
location / {
|
|
try_files /index.html /index.html =404;
|
|
}
|
|
|
|
location /r/ {
|
|
try_files /thread.html /thread.html =404;
|
|
}
|
|
|
|
location /static/ {
|
|
try_files $uri $uri/ =404;
|
|
}
|
|
} |