diff options
author | Ramón M. Gómez <ramongomez@us.es> | 2019-02-07 10:35:55 +0100 |
---|---|---|
committer | Ramón M. Gómez <ramongomez@us.es> | 2019-02-07 10:35:55 +0100 |
commit | ea016a46cd299cf7e9bd5f028f73393e19b5abe7 (patch) | |
tree | 08e4f8c890932152cb8ffc58b5d76e25ee963af3 /installer/opengnsys_update.sh | |
parent | 39f06eb4274488222dd4b5fc8aab3069762a0e5e (diff) |
#784: Fixing Apache configuration error when multiple instances of PHP-FPM are installed.
Diffstat (limited to 'installer/opengnsys_update.sh')
-rwxr-xr-x | installer/opengnsys_update.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/installer/opengnsys_update.sh b/installer/opengnsys_update.sh index 09142865..2fcd3be8 100755 --- a/installer/opengnsys_update.sh +++ b/installer/opengnsys_update.sh @@ -571,7 +571,7 @@ function apacheConfiguration () else template=$WORKDIR/opengnsys/server/etc/apache.conf.tmpl fi - sockfile=$(find /run/php -name "php*.sock" -type s -print 2>/dev/null) + sockfile=$(find /run/php -name "php*.sock" -type s -print 2>/dev/null | tail -1) # Actualizar configuración de Apache a partir de fichero de plantilla. for config in $APACHECFGDIR/{,sites-available/}opengnsys.conf; do if [ -e $config ]; then |