Re: Php page returns 450

2022-07-23 Thread Mik J via nginx
Hello, After taking a rest I found the solution. There was this directive placed a few lines beforelocation ~ /log { deny all; return 404; } And the /logout.php page was marching that directive. I have replaced it bylocation /log { deny all; return 404; }Which hopefully will help to protect acce

Php page returns 450

2022-07-23 Thread Mik J via nginx
Hello, I use an application named Cacti and everything works well except the logout.php page So when I try to accesshttps://example.org/index.phphttps://example.org/graph_view.phpIt works, code http is 200 But when I access the logout.php page a page 404 is returnedGET /logout.php HTTP/2.0 For