1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17
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/; } }