# Paste into Gentoo FE /etc/nginx/nginx.conf inside server { listen 443; server_name apps.f0xx.org; } # Place immediately AFTER the crashes location block (same style as hub + crashes). location /app/androidcast_project/build/ { proxy_pass https://artc0.intra.raptor.org/app/androidcast_project/build/; } # Then REMOVE or comment out the build location in /etc/nginx/apps.conf (avoid duplicate/conflict). # Reload: nginx -t && rc-service nginx reload # Verify from FE: # curl -sSI -H 'Host: apps.f0xx.org' http://127.0.0.1/app/androidcast_project/build/ | head -5 # Expect 302 + x-powered-by: PHP (after BE fragment is fixed too).