*: Dockerfiles cleanup, docker-compose.prod.yaml
New docker-compose.prod.yaml should provide a production-ish deployment of WorkAdventure
This commit is contained in:
parent
c2d0cda441
commit
33b9bd773f
11 changed files with 183 additions and 31 deletions
14
front/nginx-vhost.conf
Normal file
14
front/nginx-vhost.conf
Normal 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;
|
||||
}
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue