partey_workadventure/front/nginx-vhost.conf

16 lines
246 B
Plaintext
Raw Normal View History

2021-08-20 12:30:33 +02:00
server {
listen 80;
listen [::]:80;
server_name localhost;
access_log off;
location / {
root /usr/share/nginx/html;
index index.html index.htm;
}
location ~ ^/[@_]/ {
try_files $uri $uri/ /index.html;
}
}