Dedicated php-fpm process

Addition of base commands to manage a dedicated php-fpm process very easily
Standard empty app is not modified or changed.
This commit is contained in:
polytan02
2015-10-10 21:28:09 +02:00
parent 177c7a8886
commit cfcb62cd97
7 changed files with 319 additions and 1 deletions

View File

@@ -18,8 +18,21 @@ sudo cp -a ../sources/* $final_path
# Modify Nginx configuration file and copy it to Nginx conf directory
sed -i "s@YNH_WWW_PATH@$path@g" ../conf/nginx.conf
sed -i "s@YNH_WWW_ALIAS@$final_path/@g" ../conf/nginx.conf
# If a dedicated php-fpm process is used :
#
#sudo sed -i "s@YNH_WWW_APP@$app@g" ../conf/nginx.conf
sudo cp ../conf/nginx.conf /etc/nginx/conf.d/$domain.d/$app.conf
# If a dedicated php-fpm process is used :
# Adjustment and copy dedicated php-fpm conf file
#
#sed -i "s@YNH_WWW_APP@$app@g" ../conf/php-fpm.conf
#sed -i "s@YNH_WWW_ALIAS@$final_path/@g" ../conf/php-fpm.conf
#finalphpconf=/etc/php5/fpm/pool.d/$app.conf
#sudo cp ../conf/php-fpm.conf $finalphpconf
#sudo chown root: $finalphpconf
#sudo chmod 644 $finalphpconf
# If app is public, add url to SSOWat conf as skipped_uris
if [ "$is_public" = "Yes" ];
then
@@ -29,6 +42,10 @@ then
sudo yunohost app setting $app skipped_uris -d
fi
# If a dedicated php-fpm process is used :
#
#sudo service php5-fpm restart
# Restart services
sudo service nginx reload
sudo yunohost app ssowatconf