aboutsummaryrefslogtreecommitdiffhomepage
path: root/frontend/nginx.conf
blob: f749e0218b8417561606e48af1e96930ce1dbb11 (plain)
1
2
3
4
5
6
7
8
9
server {
    listen 80;
    root /usr/share/nginx/html;
    index index.html;

    location / {
        try_files $uri $uri/ /index.html;
    }
}