Schatje
New member
- Feb 1, 2021
- 18
- 20
- 3
For nginx, you should put this (based on mailwizz KB)Have anyone setup Mailwizz with CloudPanel ?
i need some help for Vhost Editor (nginx)
error:
Error 404!
Unable to resolve the request "customer/index.php/guest/index".
Error 404!
Unable to resolve the request "backend/index.php/guest/index".
location / {
if (!-e $request_filename){
rewrite ^(/)?api/.*$ /api/index.php;
}
if (!-e $request_filename){
rewrite ^(/)?customer/.*$ /customer/index.php;
}
if (!-e $request_filename){
rewrite ^(/)?backend/.*$ /backend/index.php;
}
if (!-e $request_filename){
rewrite ^(.*)$ /index.php;
}
index index.html index.htm index.php;
}