This commit is contained in:
2024-02-29 16:46:23 +01:00
parent 2270317594
commit 82a7598c15
18 changed files with 403 additions and 26 deletions

View File

@ -1,4 +1,3 @@
ProxyPass /ninegate http://0.0.0.0:9000/ninegate retry=0 keepalive=On
ProxyPassReverse /ninegate http://0.0.0.0:9000/ninegate retry=0
ProxyPass /wssninegate ws://0.0.0.0:9000/wssninegate retry=0 keepalive=On
@ -12,6 +11,9 @@ ProxyPassReverse /nineboard http://0.0.0.0:9002/nineboard retry=0
ProxyPass /wssnineboard ws://0.0.0.0:9002/wssnineboard retry=0 keepalive=On
ProxyPassReverse /wssnineboard ws://0.0.0.0:9002/wssnineboard retry=0
ProxyPass /wordpress http://0.0.0.0:9003/wordpress retry=0 keepalive=On
ProxyPassReverse /wordpress http://0.0.0.0:9003/wordpress retry=0
ProxyPass /adminer http://0.0.0.0:9100 retry=0 keepalive=On
ProxyPassReverse /adminer http://0.0.0.0:9100 retry=0

View File

@ -7,7 +7,7 @@ APP_ALIAS=nineboard/
%if %%getVar("activer_ninegate", "non") == "oui"
APP_MASTERIDENTITY=NINEGATE
APP_MASTERURL=/ninegate
APP_MASTERURL=${NINEGATE_URL}
APP_MASTERKEY=%%getVar("ninegate_secret","")
%else
%if %%getVar("activer_openldap", "non") == "oui"

View File

@ -57,7 +57,8 @@ CAS_PASSWORD=%%getVar("keycload_userpassword", "")
# NINEGATE
NINEGATE_ACTIVATE=%%getBool(%%getVar("activer_ninegate", "non"))
NINEGATE_URL=/ninegate
NINEGATE_LOCAL=%%getBool(%%getVar("ninegate_local", "non"))
NINEGATE_URL=%%getVar("ninegate_url", "/ninegate")
# NINEBOARD
NINEBOARD_ACTIVATE=%%getBool(%%getVar("activer_nineboard", "non"))
@ -69,6 +70,11 @@ NEXTCLOUD_ACTIVATE=%%getBool(%%getVar("activer_nextcloud", "non"))
NEXTCLOUD_LOCAL=%%getBool(%%getVar("nextcloud_local", "non"))
NEXTCLOUD_URL=%%getVar("nextcloud_url", "/nextcloud")
# WORDPRESS
WORDPRESS_ACTIVATE=%%getBool(%%getVar("activer_wordpress", "non"))
WORDPRESS_LOCAL=%%getBool(%%getVar("wordpress_local", "non"))
WORDPRESS_URL=%%getVar("wordpress_url", "/wordpress")
# ADMINER
ADMINER_ACTIVATE=%%getBool(%%getVar("activer_adminer", "non"))
ADMINER_LOCAL=1