1
0
Fork 0
mirror of https://github.com/YunoHost-Apps/my_webapp_ynh.git synced 2024-09-03 19:46:26 +02:00

Update the On/Off error code parameter

Revert nginx config
This commit is contained in:
Aurelien Vaillant 2023-08-17 17:56:51 +02:00
parent 42a5b89393
commit 1b4c09bc1d
2 changed files with 9 additions and 6 deletions

View file

@ -6,8 +6,7 @@ location __PATH__/ {
# Default indexes and catch-all
index index.html index.php;
# try_files $uri $uri/ __PATH__/index.php?$args =404;
try_files $uri $uri/ __PATH__/index.php?$args;
try_files $uri $uri/ __PATH__/index.php?$args =404;
# Prevent useless logs
location = __PATH__/favicon.ico {

View file

@ -151,10 +151,14 @@ ynh_app_config_apply() {
if [ "${changed[custom_error_file]}" == "true" ]
then
CUSTOM_ERROR_FILE=$custom_error_file
# ynh_add_config --template="nginx-code-error.conf" --destination="/etc/nginx/conf.d/$domain.d/$app.d/error-code.conf"
ynh_secure_remove --file="/etc/nginx/conf.d/$domain.d/$app.d/error-code.conf"
else
ynh_secure_remove --file="/etc/nginx/conf.d/$domain.d/$app.d/error-code.conf"
nginx_extra_conf_dir="/etc/nginx/conf.d/$domain.d/$app.d"
if [ "$custom_error_file" ]
then
ynh_add_config --template="nginx-code-error.conf" --destination="$nginx_extra_conf_dir/error-code.conf"
else
ynh_secure_remove --file="$nginx_extra_conf_dir/error-code.conf"
fi
fi
if [ "$phpversion" != "none" ]