• If you are still using CentOS 7.9, it's time to convert to Alma 8 with the free centos2alma tool by Plesk or Plesk Migrator. Please let us know your experiences or concerns in this thread:
    CentOS2Alma discussion

Question AWSTATS 404 site not found

Danny325

Basic Pleskian
I handle all uris over my frontcontroller and php scripts like that it was necessary to add:

Code:
if (!-e $request_filename){
   rewrite ^(.*)$ /index.php break;
}

Now if i try to open the awstat ui, .../plesk-stat/webstat-ssl/ i get my custom 404 error page.

Is there any clever way handle only the affected uri with nginx ?

EDIT:
Meantime i added before something like:
Code:
if ($request_uri ~ "^\/plesk-stat\/$"){
    break;
}
Any better solution ?
 
Last edited:
Back
Top