copanier/docker/nginx-default.conf
TheCapsLock ff6bdb0f10
Docker: using Gunicorn (#55)
* docker: using gunicorn
* cleanup

Co-authored-by: CapsLock <github@legeox.net>
2021-04-07 22:26:25 +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;
}
}