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
|
|
|
|
2023-06-29 19:08:38 +02:00
|
|
|
ynh_change_url_nginx_config
|
2018-10-21 17:56:11 +02:00
|
|
|
|
2019-05-22 17:33:04 +02:00
|
|
|
#=================================================
|
|
|
|
# SPECIFIC MODIFICATIONS
|
|
|
|
#=================================================
|
2022-10-02 23:12:34 +02:00
|
|
|
# UPGRADING FRESHRSS
|
|
|
|
#=================================================
|
|
|
|
ynh_script_progression --message="Upgrading FreshRSS..." --weight=1
|
2019-05-22 17:33:04 +02:00
|
|
|
|
2023-06-29 19:08:38 +02:00
|
|
|
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
|