skip to Main Content

Laravel Controller not being invoked

I have never used Laravel before and am trying to get my first controller working, using Laravel 10.45.1. The documentation says I should put this in my route file. In my case, I put these lines in /routes/web.php. use AppHttpControllersTestController;…

VIEW QUESTION

Nginx – How I can hide URL parameters in a reverse proxy?

I have the following reverse proxy in Nginx. I am trying to hide the sig key. location /documents { set $delimeter ""; if ($is_args) { set $delimeter "&"; } set $args "$args${delimeter}sp=rl&st=2024-02-15T14:18:59Z&se=2025-02-15T22:18:59Z&spr=https&sv=2022-11-02&sr=c&sig=TxTaaaaaaaaaaaaaaaaaaaaaaaaaaNgU%3D"; proxy_pass https://testtestsitweu.blob.core.windows.net/publicfiles/MyFiles/; proxy_ssl_name testtestsitweu.blob.core.windows.net; proxy_ssl_server_name on; } But…

VIEW QUESTION
Back To Top
Search