*: Dockerfiles cleanup, docker-compose.prod.yaml

New docker-compose.prod.yaml should provide a production-ish deployment
of WorkAdventure
This commit is contained in:
Piotr Dobrowolski 2021-01-08 00:20:27 +01:00
parent c2d0cda441
commit 33b9bd773f
11 changed files with 183 additions and 31 deletions

14
front/nginx-vhost.conf Normal file
View file

@ -0,0 +1,14 @@
server {
listen 8000;
listen [::]:8000;
server_name localhost;
location / {
root /usr/share/nginx/html;
index index.html index.htm;
}
location ~ ^/[@_]/ {
try_files $uri $uri/ /index.html;
}
}