Files
website/nginx.conf

10 lines
133 B
Nginx Configuration File

server {
listen 80;
root /usr/share/nginx/html;
location /web/ {
try_files $uri $uri/ /web/index.html;
}
}