mirror of
https://github.com/YunoHost-Apps/rustdesk-server_ynh.git
synced 2024-09-03 20:16:24 +02:00
fix
This commit is contained in:
parent
7120d534a6
commit
17d9013883
2 changed files with 5 additions and 1 deletions
|
@ -8,7 +8,7 @@ Group=__APP__
|
||||||
Restart=always
|
Restart=always
|
||||||
LimitNOFILE=1000000
|
LimitNOFILE=1000000
|
||||||
WorkingDirectory=__INSTALL_DIR__/
|
WorkingDirectory=__INSTALL_DIR__/
|
||||||
ExecStart=__INSTALL_DIR__/hbbs -r __PUBLIC_IP4__ -p __PORT_HBBS__
|
ExecStart=__INSTALL_DIR__/hbbs -r __IP__ -p __PORT_HBBS__
|
||||||
StandardOutput=append:/var/log/__APP__/hbbs.log
|
StandardOutput=append:/var/log/__APP__/hbbs.log
|
||||||
StandardError=append:/var/log/__APP__/hbbs.error
|
StandardError=append:/var/log/__APP__/hbbs.error
|
||||||
RestartSec=10
|
RestartSec=10
|
||||||
|
|
|
@ -29,6 +29,10 @@ chmod +x "$install_dir/hbbs"
|
||||||
#=================================================
|
#=================================================
|
||||||
ynh_script_progression --message="Adding system configurations related to $app..." --weight=1
|
ynh_script_progression --message="Adding system configurations related to $app..." --weight=1
|
||||||
|
|
||||||
|
public_ip4="$(curl -s ip.yunohost.org)" || true
|
||||||
|
|
||||||
|
ip=${public_ip4}
|
||||||
|
|
||||||
# Create a dedicated NGINX config using the conf/nginx.conf template
|
# Create a dedicated NGINX config using the conf/nginx.conf template
|
||||||
ynh_add_nginx_config
|
ynh_add_nginx_config
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue