mirror of
https://github.com/kevinveenbirkenbach/computer-playbook.git
synced 2025-09-17 15:56:04 +02:00
Added proxy conf variables for xwiki
This commit is contained in:
@@ -1,8 +1,14 @@
|
|||||||
|
# Proxy
|
||||||
|
xwiki.url.protocol={{ WEB_PROTOCOL }}
|
||||||
|
xwiki.url.host={{ domain }}
|
||||||
|
xwiki.url.port={{ WEB_PORT }}
|
||||||
|
|
||||||
############################################
|
############################################
|
||||||
# OIDC
|
# OIDC
|
||||||
# Render this block only while the OIDC switch is ON in _flush_config.yml.
|
# Render this block only while the OIDC switch is ON in _flush_config.yml.
|
||||||
# During bootstrap we keep it OFF to avoid ClassNotFoundException before the extension is installed.
|
# During bootstrap we keep it OFF to avoid ClassNotFoundException before the extension is installed.
|
||||||
{% if xwiki_oidc_enabled_switch | bool %}
|
{% if xwiki_oidc_enabled_switch | bool %}
|
||||||
|
oidc.showLoginButton=true
|
||||||
oidc.provider={{ XWIKI_OIDC_PROVIDER }}
|
oidc.provider={{ XWIKI_OIDC_PROVIDER }}
|
||||||
oidc.endpoint.authorization={{ XWIKI_OIDC_AUTHORIZATION }}
|
oidc.endpoint.authorization={{ XWIKI_OIDC_AUTHORIZATION }}
|
||||||
oidc.endpoint.token={{ XWIKI_OIDC_TOKEN }}
|
oidc.endpoint.token={{ XWIKI_OIDC_TOKEN }}
|
||||||
|
@@ -1,9 +1,10 @@
|
|||||||
# General
|
# General
|
||||||
application_id: "web-app-xwiki"
|
application_id: "web-app-xwiki"
|
||||||
database_type: "{{ applications | get_app_conf(application_id, 'docker.services.database.type') }}"
|
database_type: "{{ applications | get_app_conf(application_id, 'docker.services.database.type') }}"
|
||||||
|
domain: "{{ domains | get_domain(application_id) }}"
|
||||||
|
|
||||||
container_port: 8080
|
container_port: 8080
|
||||||
container_hostname: "{{ domains | get_domain(application_id) }}"
|
container_hostname: "{{ domain }}"
|
||||||
|
|
||||||
# XWiki
|
# XWiki
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user