diff --git a/doc/ADMIN.md b/doc/ADMIN.md index 17f099b..de42fa5 100644 --- a/doc/ADMIN.md +++ b/doc/ADMIN.md @@ -2,6 +2,7 @@ Your SMP server address: ``` smp://__FINGERPRINT__@__PUBLIC_IP4__:__PORT__ +xftp://__XFTP_FINGERPRINT__@__PUBLIC_IP4__:__PORT__ ``` Mobile clients are available for [iOS](https://apps.apple.com/us/app/simplex-chat/id1605771084), [Android](https://play.google.com/store/apps/details?id=chat.simplex.app) and [f-droid](https://app.simplex.chat). diff --git a/doc/ADMIN_fr.md b/doc/ADMIN_fr.md index 35e5aa0..9edf1ee 100644 --- a/doc/ADMIN_fr.md +++ b/doc/ADMIN_fr.md @@ -2,6 +2,7 @@ L'adresse de votre serveur SMP est : ``` smp://__FINGERPRINT__@__PUBLIC_IP4__:__PORT__ +xftp://__XFTP_FINGERPRINT__@__PUBLIC_IP4__:__PORT__ ``` Les clients mobiles sont disponibles pour [iOS](https://apps.apple.com/us/app/simplex-chat/id1605771084), [Android](https://play.google.com/store/apps/details?id=chat.simplex.app) et [f-droid](https://app.simplex.chat). diff --git a/doc/POST_INSTALL.md b/doc/POST_INSTALL.md index c7220db..5ca9f82 100644 --- a/doc/POST_INSTALL.md +++ b/doc/POST_INSTALL.md @@ -1,3 +1,4 @@ Your SMP server address: smp://__FINGERPRINT__@__PUBLIC_IP4__:__PORT__ +xftp://__XFTP_FINGERPRINT__@__PUBLIC_IP4__:__PORT__ diff --git a/doc/POST_INSTALL_fr.md b/doc/POST_INSTALL_fr.md index 531d913..a9fe76e 100644 --- a/doc/POST_INSTALL_fr.md +++ b/doc/POST_INSTALL_fr.md @@ -1,3 +1,4 @@ Adresse de votre serveur SMP : smp://__FINGERPRINT__@__PUBLIC_IP4__:__PORT__ +xftp://__XFTP_FINGERPRINT__@__PUBLIC_IP4__:__PORT__ diff --git a/doc/POST_UPGRADE.md b/doc/POST_UPGRADE.md index c7220db..bf546fa 100644 --- a/doc/POST_UPGRADE.md +++ b/doc/POST_UPGRADE.md @@ -1,3 +1,4 @@ Your SMP server address: smp://__FINGERPRINT__@__PUBLIC_IP4__:__PORT__ +xftp://__XFTP_FINGERPRINT__@__PUBLIC_IP4__:__PORT__ \ No newline at end of file diff --git a/doc/POST_UPGRADE_fr.md b/doc/POST_UPGRADE_fr.md index 531d913..a9fe76e 100644 --- a/doc/POST_UPGRADE_fr.md +++ b/doc/POST_UPGRADE_fr.md @@ -1,3 +1,4 @@ Adresse de votre serveur SMP : smp://__FINGERPRINT__@__PUBLIC_IP4__:__PORT__ +xftp://__XFTP_FINGERPRINT__@__PUBLIC_IP4__:__PORT__ diff --git a/scripts/install b/scripts/install index 32ab050..123e825 100755 --- a/scripts/install +++ b/scripts/install @@ -37,6 +37,9 @@ popd fingerprint=$(cat /etc/opt/simplex/fingerprint) ynh_app_setting_set --app=$app --key=fingerprint --value=$fingerprint +xftp_fingerprint=$(cat /etc/opt/simplex-xftp/fingerprint) +ynh_app_setting_set --app=$app --key=xftp_fingerprint --value=$xftp_fingerprint + chown -R $app:$app "/etc/opt/simplex" #=================================================