proxy_http_version 1.1; # this is essential for chunked responses to work proxy_read_timeout 1d; # prevent timeouts when serving live stream location /buildservice/api/ { proxy_buffering off; # for live streaming of logfiles proxy_pass http://localhost:8090/api/; proxy_set_header Host $host; proxy_set_header X-Real-IP $remote_addr; proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for; proxy_set_header X-Forwarded-Proto $scheme; } location ~ ^(?!/buildservice/api/)/buildservice/(.*)$ { alias /run/media/devel/projects/c++/cmake/auto-makepkg/srv/static/$1; }