From e97edb0addaae6f65518390889ee3b473254a799 Mon Sep 17 00:00:00 2001 From: Xavier Guimard Date: Wed, 16 Dec 2015 20:12:01 +0000 Subject: [PATCH] Propose CGI mode in comments --- _example/etc/manager-apache2.4.conf | 5 ++++- _example/etc/manager-apache2.X.conf | 5 ++++- _example/etc/manager-apache2.conf | 5 ++++- 3 files changed, 12 insertions(+), 3 deletions(-) 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 # --------------------