1
0
Fork 0
mirror of https://github.com/YunoHost-Apps/ergo_ynh.git synced 2024-09-03 18:26:31 +02:00

Merge pull request #4 from YunoHost-Apps/testing

Testing
This commit is contained in:
Navan Chauhan 2022-07-08 12:48:18 +05:30 committed by GitHub
commit a9e37c7e69
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
7 changed files with 7 additions and 16 deletions

View file

@ -26,7 +26,7 @@ Ergo (formerly known as Oragono) is a modern IRC server written in Go. Its core
**Shipped version:** 2.10.0~ynh1
**Shipped version:** 2.10.0~ynh2
**Demo:** https://testnet.ergo.chat/

View file

@ -26,7 +26,7 @@ Ergo (formerly known as Oragono) is a modern IRC server written in Go. Its core
**Version incluse :** 2.10.0~ynh1
**Version incluse :** 2.10.0~ynh2
**Démo :** https://testnet.ergo.chat/

View file

@ -13,7 +13,7 @@
setup_sub_dir=1
setup_root=1
setup_nourl=0
setup_private=1
setup_private=0
setup_public=1
upgrade=1
backup_restore=1

View file

@ -1,15 +1,4 @@
#sub_path_only rewrite ^__PATH__$ __PATH__/ permanent;
location __PATH__/ {
proxy_pass https://127.0.0.1:__PORT__/;
proxy_redirect off;
proxy_set_header Host $host;
proxy_set_header X-Real-IP $remote_addr;
proxy_set_header X-Forwarded-Proto $scheme;
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
proxy_set_header X-Forwarded-Host $server_name;
proxy_http_version 1.1;
proxy_set_header Upgrade $http_upgrade;
proxy_set_header Connection "upgrade";
alias __FINAL_PATH_WWW__/help/;
}

View file

@ -6,7 +6,7 @@
"en": "A modern IRC server (daemon/ircd) written in Go",
"fr": "A modern IRC server (daemon/ircd) written in Go"
},
"version": "2.10.0~ynh1",
"version": "2.10.0~ynh2",
"url": "https://ergo.chat/",
"upstream": {
"license": "MIT",

View file

@ -28,6 +28,7 @@ ynh_script_progression --message="Loading installation settings..." --time --wei
# Needed for helper "ynh_add_nginx_config"
final_path=$(ynh_app_setting_get --app=$app --key=final_path)
final_path_www=$(ynh_app_setting_get --app=$app --key=final_path_www)
port=$(ynh_app_setting_get --app=$app --key=port)
#=================================================

View file

@ -19,6 +19,7 @@ app=$YNH_APP_INSTANCE_NAME
domain=$(ynh_app_setting_get --app=$app --key=domain)
path_url=$(ynh_app_setting_get --app=$app --key=path)
final_path=$(ynh_app_setting_get --app=$app --key=final_path)
final_path_www=$(ynh_app_setting_get --app=$app --key=final_path_www)
port=$(ynh_app_setting_get --app=$app --key=port)
secure_port=$(ynh_app_setting_get --app=$app --key=secure_port)