dawdle/nginx.conf.template
2024-02-28 16:23:41 +11:00

16 lines
226 B
Plaintext

server {
location /static {
#autoindex on;
alias /usr/share/nginx/html/;
}
location / {
proxy_pass http://web:8000;
proxy_set_header Host $host;
}
access_log syslog;
error_log stderr warn;
}