2017-09-11 21:54:50 +00:00
|
|
|
server {
|
|
|
|
|
listen 80 default_server;
|
|
|
|
|
listen [::]:80 default_server;
|
|
|
|
|
|
|
|
|
|
root /var/www/removeddit;
|
2017-11-12 00:24:24 +00:00
|
|
|
index about.html;
|
2017-09-11 21:54:50 +00:00
|
|
|
server_name _;
|
|
|
|
|
|
2017-11-12 00:24:24 +00:00
|
|
|
location ~* /r/[a-zA-Z0-9]+/[a-zA-Z0-9] {
|
|
|
|
|
try_files /thread.html /thread.html =404;
|
2017-09-11 21:54:50 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
location /r/ {
|
2017-11-12 00:24:24 +00:00
|
|
|
try_files /subreddit.html /subreddit.html =404;
|
2017-09-11 21:54:50 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
location /static/ {
|
|
|
|
|
try_files $uri $uri/ =404;
|
|
|
|
|
}
|
2017-11-12 00:24:24 +00:00
|
|
|
|
|
|
|
|
location /about/ {
|
|
|
|
|
try_files /about.html /about.html =404;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
location / {
|
|
|
|
|
try_files /subreddit.html /subreddit.html =404;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|