The *websites/proxy-matrix* role configures the Internet-facing reverse proxy to handle the *hatch.chat* domain. Most Matrix communication happens over the default HTTPS port, and as such will be directed through the reverse proxy.
7 lines
178 B
YAML
7 lines
178 B
YAML
- name: ensure apache is configured to proxy for matrix
|
|
template:
|
|
src: matrix.httpd.conf.j2
|
|
dest: /etc/httpd/conf.d/matrix.conf
|
|
mode: '0644'
|
|
notify: reload httpd
|