From 0f7798c1e42e0e32b357c031457a3db6450f75fa Mon Sep 17 00:00:00 2001
From: jurgenhaas <juergen@paragon-es.de>
Date: Thu, 27 Jun 2019 11:52:33 +0200
Subject: [PATCH] Improve installation and configuration after some experience
 with the framework

---
 templates/etc-apache2-sites-available-default | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/templates/etc-apache2-sites-available-default b/templates/etc-apache2-sites-available-default
index 6eadcaa..4f7efab 100644
--- a/templates/etc-apache2-sites-available-default
+++ b/templates/etc-apache2-sites-available-default
@@ -4,9 +4,9 @@
   ServerAdmin {{apache_server_admin}}
 
 {% if php_fpm|default(true) and not php_fpm_socket|default(false) %}
-  ProxyPassMatch ^/(.*\.php(/.*)?)$ fcgi://127.0.0.1:{{ php_fpm_port|default(9000) }}/var/www{{apache_server_default_root}}/$1
+  ProxyPassMatch ^/(.*\.php(/.*)?)$ fcgi://127.0.0.1:{{ php_fpm_port|default(9999) }}/var/www{{apache_server_default_root}}/$1
   ProxyTimeout 900
-  <Proxy fcgi://127.0.0.1:{{ php_fpm_port|default(9000) }}>
+  <Proxy fcgi://127.0.0.1:{{ php_fpm_port|default(9999) }}>
     ProxySet connectiontimeout=5 timeout=900 retry=3
   </Proxy>
 {% endif %}
-- 
GitLab