1
0
Fork 0
mirror of https://github.com/YunoHost-Apps/duniter_ynh.git synced 2024-09-03 18:26:35 +02:00
duniter_ynh/scripts/_common.sh

32 lines
1.1 KiB
Bash
Raw Normal View History

2022-03-12 16:55:59 +01:00
#!/bin/bash
#=================================================
# COMMON VARIABLES
#=================================================
#=================================================
# PERSONAL HELPERS
#=================================================
2024-02-21 14:59:14 +01:00
CONFIGURE_DUNITER() {
2024-02-21 14:59:14 +01:00
ynh_exec_as "duniter" duniter --home "$data_dir" config \
2024-02-21 18:01:03 +01:00
--bma --ipv4 127.0.0.1 --port "$port_local_bma" --remoteh $domain --remotep 443 --noupnp
2024-02-21 14:59:14 +01:00
ynh_exec_as "duniter" duniter --home "$data_dir" config \
2024-02-21 18:01:03 +01:00
--ws2p-host 127.0.0.1 --ws2p-port "$port_local_ws2p" \
2024-02-21 14:59:14 +01:00
--ws2p-remote-host "$domain" --ws2p-remote-port 443 \
--ws2p-remote-path "/ws2p" --ws2p-noupnp
2024-02-21 14:59:14 +01:00
# Add BMAS with path, remove auto-generated BMAS endpoint
ynh_exec_as "duniter" duniter --home "$data_dir" config \
--addep "BMAS $domain 443 /bma" --remep "BMAS $domain 443"
}
2022-03-12 16:55:59 +01:00
#=================================================
# EXPERIMENTAL HELPERS
#=================================================
#=================================================
# FUTURE OFFICIAL HELPERS
#=================================================