[enh] better server with install.sh

This commit is contained in:
alban 2020-11-02 15:07:37 +01:00
parent 42ccba832e
commit 9aa91985c9
4 changed files with 17 additions and 2 deletions

View file

@ -0,0 +1,13 @@
server {
server_name _;
listen 80 default_server;
listen [::]:80 default_server;
root /opt/;
location /image {
proxy_pass http://app:5000;
}
# Docker specific conf
resolver 127.0.0.11 ipv6=off;
access_log /dev/stdout;
}