mirror of
https://github.com/gurnec/removeddit.git
synced 2026-03-11 08:54:27 +00:00
20 lines
330 B
Text
20 lines
330 B
Text
server {
|
|
listen 80 default_server;
|
|
listen [::]:80 default_server;
|
|
|
|
root /srv/removeddit/site;
|
|
index index.html;
|
|
server_name _;
|
|
|
|
error_page 404 /index.html
|
|
|
|
#location /api/ {
|
|
# include uwsgi_params;
|
|
# uwsgi_pass unix:/srv/removeddit-api/socket/uwsgi.sock;
|
|
#}
|
|
|
|
location / {
|
|
try_files $uri $uri/ /index.html =404;
|
|
}
|
|
}
|
|
|