copanier/docker/nginx-default.conf
2021-04-07 22:13:20 +02:00

13 lines
217 B
Text

server {
listen 80;
server_name localhost;
location / {
proxy_pass http://app:2244;
}
location /static/ {
root /srv/copanier_static/;
index index.html;
}
}