1
0
Fork 0
mirror of https://github.com/YunoHost-Apps/freshrss_ynh.git synced 2024-09-03 18:36:33 +02:00
freshrss_ynh/scripts/change_url

35 lines
1.3 KiB
Text
Raw Normal View History

2018-10-21 17:56:11 +02:00
#!/bin/bash
#=================================================
# GENERIC STARTING
#=================================================
# IMPORT GENERIC HELPERS
#=================================================
source _common.sh
source /usr/share/yunohost/helpers
#=================================================
# STANDARD MODIFICATIONS
#=================================================
2022-10-02 23:12:34 +02:00
# MODIFY URL IN NGINX CONF
2018-10-21 17:56:11 +02:00
#=================================================
2022-10-02 23:12:34 +02:00
ynh_script_progression --message="Updating NGINX web server configuration..." --weight=1
2018-10-21 17:56:11 +02:00
ynh_change_url_nginx_config
2018-10-21 17:56:11 +02:00
#=================================================
# SPECIFIC MODIFICATIONS
#=================================================
2022-10-02 23:12:34 +02:00
# UPGRADING FRESHRSS
#=================================================
ynh_script_progression --message="Upgrading FreshRSS..." --weight=1
ynh_exec_as $app $install_dir/cli/reconfigure.php --auth_type http_auth --environment production --base_url https://$new_domain$new_path --title FreshRSS --api_enabled --db-type mysql --db-host localhost --db-user $db_name --db-password $db_pwd --db-base $db_name
2019-03-31 18:43:02 +02:00
#=================================================
# END OF SCRIPT
#=================================================
2018-10-21 17:56:11 +02:00
2022-10-02 23:12:34 +02:00
ynh_script_progression --message="Change of URL completed for $app" --last