Matrix Docker Ansible eploy
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 

78 lines
4.1 KiB

  1. matrix_nginx_proxy_enabled: true
  2. matrix_nginx_proxy_docker_image: "nginx:1.15.8-alpine"
  3. matrix_nginx_proxy_data_path: "{{ matrix_base_data_path }}/nginx-proxy"
  4. matrix_nginx_proxy_confd_path: "{{ matrix_nginx_proxy_data_path }}/conf.d"
  5. # List of systemd services that matrix-nginx-proxy.service depends on
  6. matrix_nginx_proxy_systemd_required_services_list: ['docker.service']
  7. # List of systemd services that matrix-nginx-proxy.service wants
  8. matrix_nginx_proxy_systemd_wanted_services_list: []
  9. # Controls whether proxying the riot domain should be done.
  10. matrix_nginx_proxy_proxy_riot_enabled: false
  11. matrix_nginx_proxy_proxy_riot_hostname: "{{ hostname_riot }}"
  12. # Controls whether proxying the matrix domain should be done.
  13. matrix_nginx_proxy_proxy_matrix_enabled: false
  14. matrix_nginx_proxy_proxy_matrix_hostname: "{{ hostname_matrix }}"
  15. # Controls whether proxying for the matrix-corporal API (`/_matrix/corporal`) should be done (on the matrix domain)
  16. matrix_nginx_proxy_proxy_matrix_corporal_api_enabled: false
  17. matrix_nginx_proxy_proxy_matrix_corporal_api_addr_with_container: "matrix-corporal:41081"
  18. matrix_nginx_proxy_proxy_matrix_corporal_api_addr_sans_container: "localhost:41081"
  19. # Controls whether proxying for the Identity API (`/_matrix/identity`) should be done (on the matrix domain)
  20. matrix_nginx_proxy_proxy_matrix_identity_api_enabled: false
  21. matrix_nginx_proxy_proxy_matrix_identity_api_addr_with_container: "matrix-mxisd:8090"
  22. matrix_nginx_proxy_proxy_matrix_identity_api_addr_sans_container: "localhost:8090"
  23. # The addresses where the Matrix Client API is.
  24. # Certain extensions (like matrix-corporal) may override this in order to capture all traffic.
  25. matrix_nginx_proxy_proxy_matrix_client_api_addr_with_container: "matrix-synapse:8008"
  26. matrix_nginx_proxy_proxy_matrix_client_api_addr_sans_container: "localhost:8008"
  27. # This needs to be equal or higher than the maximum upload size accepted by Synapse.
  28. matrix_nginx_proxy_proxy_matrix_client_api_client_max_body_size: "25M"
  29. # A list of strings containing additional configuration blocks to add to the matrix domain's server configuration.
  30. matrix_nginx_proxy_proxy_matrix_additional_server_configuration_blocks: []
  31. # Specifies when to reload the matrix-nginx-proxy service so that
  32. # a new SSL certificate could go into effect.
  33. matrix_nginx_proxy_reload_cron_time_definition: "20 4 */5 * *"
  34. # Specifies which SSL protocols to use when serving Riot and Synapse
  35. # Note TLSv1.3 is not yet available in dockerized nginx
  36. # See: https://github.com/nginxinc/docker-nginx/issues/190
  37. matrix_nginx_proxy_ssl_protocols: "TLSv1.1 TLSv1.2"
  38. # By default, this playbook automatically retrieves and auto-renews
  39. # free SSL certificates from Let's Encrypt.
  40. #
  41. # The following retrieval methods are supported:
  42. # - "lets-encrypt" - the playbook obtains free SSL certificates from Let's Encrypt
  43. # - "self-signed" - the playbook generates and self-signs certificates
  44. # - "manually-managed" - lets you manage certificates by yourself (manually; see below)
  45. #
  46. # If you decide to manage certificates by yourself (`matrix_ssl_retrieval_method: manually-managed`),
  47. # you'd need to drop them into the directory specified by `matrix_ssl_config_dir_path`
  48. # obeying the following hierarchy:
  49. # - <matrix_ssl_config_dir_path>/live/<domain>/fullchain.pem
  50. # - <matrix_ssl_config_dir_path>/live/<domain>/privkey.pem
  51. # where <domain> refers to the domains that you need (usually `hostname_matrix` and `hostname_riot`).
  52. matrix_ssl_retrieval_method: "lets-encrypt"
  53. # The list of domains that this role will obtain certificates for.
  54. matrix_ssl_domains_to_obtain_certificates_for: []
  55. # Controls whether to obtain production or staging certificates from Let's Encrypt.
  56. matrix_ssl_lets_encrypt_staging: false
  57. matrix_ssl_lets_encrypt_certbot_docker_image: "certbot/certbot:v0.30.0"
  58. matrix_ssl_lets_encrypt_certbot_standalone_http_port: 2402
  59. matrix_ssl_lets_encrypt_support_email: "{{ host_specific_matrix_ssl_lets_encrypt_support_email }}"
  60. matrix_ssl_base_path: "{{ matrix_base_data_path }}/ssl"
  61. matrix_ssl_config_dir_path: "{{ matrix_ssl_base_path }}/config"
  62. matrix_ssl_log_dir_path: "{{ matrix_ssl_base_path }}/log"