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.
 
 

41 rivejä
1.8 KiB

  1. # The bare hostname which represents your identity.
  2. # This is something like "example.com".
  3. # Note: this playbook does not touch the server referenced here.
  4. hostname_identity: "{{ host_specific_hostname_identity }}"
  5. # This is where your data lives and what we set up here.
  6. # This and the Riot hostname (see below) are expected to be on the same server.
  7. hostname_matrix: "matrix.{{ hostname_identity }}"
  8. # This is where you access the web UI from and what we set up here.
  9. # This and the Matrix hostname (see above) are expected to be on the same server.
  10. hostname_riot: "riot.{{ hostname_identity }}"
  11. ssl_certs_path: /etc/pki/acmetool-certs
  12. ssl_support_email: "{{ host_specific_ssl_support_email }}"
  13. matrix_user_username: "matrix"
  14. matrix_user_uid: 991
  15. matrix_user_gid: 991
  16. matrix_postgres_connection_username: "synapse"
  17. matrix_postgres_connection_password: "synapse-password"
  18. matrix_postgres_db_name: "homeserver"
  19. matrix_base_data_path: "/matrix"
  20. matrix_environment_variables_data_path: "{{ matrix_base_data_path }}/environment-variables"
  21. matrix_synapse_data_path: "{{ matrix_base_data_path }}/synapse"
  22. matrix_postgres_data_path: "{{ matrix_base_data_path }}/postgres"
  23. matrix_nginx_proxy_data_path: "{{ matrix_base_data_path }}/nginx-proxy"
  24. matrix_nginx_proxy_confd_path: "{{ matrix_nginx_proxy_data_path }}/conf.d"
  25. matrix_nginx_riot_web_data_path: "{{ matrix_base_data_path }}/riot-web"
  26. matrix_scratchpad_dir: "{{ matrix_base_data_path }}/scratchpad"
  27. docker_postgres_image: "postgres:9.6.3-alpine"
  28. docker_matrix_image: "silviof/docker-matrix"
  29. docker_nginx_image: "nginx:1.13.3-alpine"
  30. docker_riot_image: "silviof/matrix-riot-docker"
  31. # Specifies when to restart the Matrix services so that
  32. # a new SSL certificate could go into effect (UTC time).
  33. matrix_services_restart_cron_time_definition: "15 4 3 * *"