From 472bafb9d73c8033dfefab8597c2fa971a48069e Mon Sep 17 00:00:00 2001 From: Till Brehm Date: Thu, 11 May 2017 12:49:06 +0200 Subject: [PATCH] Implemented #4653 Add support for HHVM with apache mod_proxy_fcgi --- server/conf/vhost.conf.master | 26 ++++++++++++++++++++++++++ 1 file changed, 26 insertions(+) diff --git a/server/conf/vhost.conf.master b/server/conf/vhost.conf.master index 9faa2b1c7b..d5052d8d56 100644 --- a/server/conf/vhost.conf.master +++ b/server/conf/vhost.conf.master @@ -406,6 +406,32 @@ Alias /hhvm-fcgi {tmpl_var name='document_root'}/cgi-bin/hhvm-fcgi-{tmpl_var name='ip_address'}-{tmpl_var name='port'}-{tmpl_var name='domain'} FastCgiExternalServer {tmpl_var name='document_root'}/cgi-bin/hhvm-fcgi-{tmpl_var name='ip_address'}-{tmpl_var name='port'}-{tmpl_var name='domain'} -idle-timeout 300 -socket /var/run/hhvm/hhvm..sock -pass-header Authorization + + + + Require all granted + + Order allow,deny + Allow from all + + + + + SetHandler "proxy:unix:/var/run/hhvm/hhvm..sock|fcgi://localhost" + + + SetHandler "proxy:unix:/var/run/hhvm/hhvm..sock|fcgi://localhost" + + + + + SetHandler "proxy:unix:/var/run/hhvm/hhvm..sock|fcgi://localhost" + + + SetHandler "proxy:unix:/var/run/hhvm/hhvm..sock|fcgi://localhost" + + + -- GitLab