Empaquetage Debian basique

This commit is contained in:
2020-06-17 18:58:27 +02:00
parent 7f7b187296
commit 1d526a37d0
8 changed files with 92 additions and 8 deletions

View File

@ -0,0 +1,15 @@
server {
listen 80 default_server;
server_name daddy.local;
root /usr/share/daddy/client/public;
index index.html;
location / {
try_files $uri /index.html =404;
}
location /api/v1/graphql {
proxy_pass http://127.0.0.1:8080/api/v1/graphql;
}
}