diff --git a/_example/etc/manager-apache2.4.conf b/_example/etc/manager-apache2.4.conf index 057ab7fc8..66483a506 100644 --- a/_example/etc/manager-apache2.4.conf +++ b/_example/etc/manager-apache2.4.conf @@ -18,7 +18,7 @@ # 1) URI management RewriteEngine on - RewriteRule "^/$" "/psgi/manager-server.fcgi/" [PT] + RewriteRule "^/$" "/psgi/manager-server.fcgi" [PT] # For performances, you can delete the previous RewriteRule line after # puttings html files: simply put the HTML results of differents modules # (configuration, sessions, notifications) as manager.html, sessions.html, @@ -44,6 +44,9 @@ # If you want to use mod_fastcgi, replace lines bellow by: #FastCgiServer __MANAGERPSGIDIR__manager-server.fcgi + # Or if you prefer to use CGI, use /psgi/manager-server.cgi instead of + # /psgi/manager-server.fcgi and adapt the rewrite rules. + # GLOBAL CONFIGURATION # -------------------- diff --git a/_example/etc/manager-apache2.X.conf b/_example/etc/manager-apache2.X.conf index 2280e77f5..5fc887e20 100644 --- a/_example/etc/manager-apache2.X.conf +++ b/_example/etc/manager-apache2.X.conf @@ -18,7 +18,7 @@ # 1) URI management RewriteEngine on - RewriteRule "^/$" "/psgi/manager-server.fcgi/" [PT] + RewriteRule "^/$" "/psgi/manager-server.fcgi" [PT] # For performances, you can delete the previous RewriteRule line after # puttings html files: simply put the HTML results of differents modules # (configuration, sessions, notifications) as manager.html, sessions.html, @@ -44,6 +44,9 @@ # If you want to use mod_fastcgi, replace lines bellow by: #FastCgiServer __MANAGERPSGIDIR__manager-server.fcgi + # Or if you prefer to use CGI, use /psgi/manager-server.cgi instead of + # /psgi/manager-server.fcgi and adapt the rewrite rules. + # GLOBAL CONFIGURATION # -------------------- diff --git a/_example/etc/manager-apache2.conf b/_example/etc/manager-apache2.conf index 859b244ae..f26a584db 100644 --- a/_example/etc/manager-apache2.conf +++ b/_example/etc/manager-apache2.conf @@ -18,7 +18,7 @@ # 1) URI management RewriteEngine on - RewriteRule "^/$" "/psgi/manager-server.fcgi/" [PT] + RewriteRule "^/$" "/psgi/manager-server.fcgi" [PT] # For performances, you can delete the previous RewriteRule line after # puttings html files: simply put the HTML results of differents modules # (configuration, sessions, notifications) as manager.html, sessions.html, @@ -44,6 +44,9 @@ # If you want to use mod_fastcgi, replace lines bellow by: #FastCgiServer __MANAGERPSGIDIR__manager-server.fcgi + # Or if you prefer to use CGI, use /psgi/manager-server.cgi instead of + # /psgi/manager-server.fcgi and adapt the rewrite rules. + # GLOBAL CONFIGURATION # --------------------