git » repo » main » tree

[main] / services / tokenourcer / nginx.conf

server {
    client_max_body_size 10K;
    listen 8080;

    location ~* \.html$ {
        root /var/www/webapp/static/html/;
        index index.html;
    }

    location /assets {
        alias /var/www/webapp/static/;
    }

    location / {
        proxy_pass http://app:8080/;
    }
}