dawdle/nginx.conf.template
2024-03-21 20:28:29 +11:00

20 lines
390 B
Plaintext

server {
location /static {
alias /usr/share/nginx/html/;
}
location /favicon.ico {
alias /usr/share/nginx/html/favicon.ico;
}
location /robots.txt {
alias /usr/share/nginx/html/robots.txt;
}
location / {
proxy_pass http://web:8000;
proxy_set_header Host $host;
}
access_log syslog;
error_log stderr warn;
}