From c0a1a4d4aa2c704a93ad654766e5c93aadb3b84b Mon Sep 17 00:00:00 2001 From: Till Brehm Date: Sat, 15 Feb 2014 14:49:21 +0100 Subject: [PATCH] Fixed: FS#3165 - .php5 files are not run as FastCGI on OpenSuSE Linux --- server/conf/vhost.conf.master | 10 ++++++++-- 1 file changed, 8 insertions(+), 2 deletions(-) diff --git a/server/conf/vhost.conf.master b/server/conf/vhost.conf.master index 035f3a52a..963174da6 100644 --- a/server/conf/vhost.conf.master +++ b/server/conf/vhost.conf.master @@ -179,7 +179,7 @@ # Clear PHP settings of this website - + SetHandler None @@ -250,6 +250,9 @@ AddHandler fcgid-script .php .php3 .php4 .php5 FCGIWrapper .php + FCGIWrapper .php3 + FCGIWrapper .php4 + FCGIWrapper .php5 Options +ExecCGI AllowOverride @@ -262,6 +265,9 @@ AddHandler fcgid-script .php .php3 .php4 .php5 FCGIWrapper .php + FCGIWrapper .php3 + FCGIWrapper .php4 + FCGIWrapper .php5 Options +ExecCGI AllowOverride @@ -282,7 +288,7 @@ Allow from all - AddHandler php5-fcgi .php + AddHandler php5-fcgi .php .php3 .php4 .php5 Action php5-fcgi /php5-fcgi Alias /php5-fcgi {tmpl_var name='document_root'}/cgi-bin/php5-fcgi-{tmpl_var name='ip_address'}-{tmpl_var name='port'}-{tmpl_var name='domain'} -- GitLab