dawdle/nginx.conf.template

16 lines
226 B
Plaintext
Raw Normal View History

2024-02-28 05:09:51 +00:00
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;
}