@n_dimension@infosec.exchange
TIL how to bypass SPA (Single Page Application) limitations by re-writing the NginX settings to go to a direct SPA URL...
location = /status {
proxy_pass http://x.x.x.x:6806/stage/build/app/index.html?id=20250727202313-qzo044a;
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;
proxy_redirect off;
}
...but apparently LLMs have ZERO use cases π
#Vibecoding #AI #LLM