Add missing vars to roles where they are used

This commit is contained in:
Stuart Mumford 2019-01-13 17:41:19 +00:00
parent b80d44afaa
commit 70dc2aa32c
No known key found for this signature in database
GPG Key ID: 60BC5C03E6276769
2 changed files with 5 additions and 2 deletions

View File

@ -3,6 +3,8 @@
# But in case that's not the case, you may wish to prevent that # But in case that's not the case, you may wish to prevent that
# and take care of proxying by yourself. # and take care of proxying by yourself.
matrix_nginx_proxy_enabled: true matrix_nginx_proxy_enabled: true
matrix_riot_web_enabled: true
matrix_corporal_enabled: false
matrix_nginx_proxy_docker_image: "nginx:1.15.8-alpine" matrix_nginx_proxy_docker_image: "nginx:1.15.8-alpine"

View File

@ -11,6 +11,7 @@ matrix_synapse_ext_path: "{{ matrix_synapse_base_path }}/ext"
# Normally, matrix-nginx-proxy is enabled and nginx can reach Synapse over the container network. # Normally, matrix-nginx-proxy is enabled and nginx can reach Synapse over the container network.
# If matrix-nginx-proxy is not enabled, or you otherwise have a need for it, you can expose # If matrix-nginx-proxy is not enabled, or you otherwise have a need for it, you can expose
# the Client/Server API's port to the local host (`127.0.0.1:8008`). # the Client/Server API's port to the local host (`127.0.0.1:8008`).
matrix_nginx_proxy_enabled: true
matrix_synapse_container_expose_client_server_api_port: "{{ not matrix_nginx_proxy_enabled }}" matrix_synapse_container_expose_client_server_api_port: "{{ not matrix_nginx_proxy_enabled }}"
matrix_synapse_in_container_python_packages_path: "/usr/local/lib/python3.6/site-packages" matrix_synapse_in_container_python_packages_path: "/usr/local/lib/python3.6/site-packages"