Slavi Pantaleev
1a3034b0c8
Fix typo
4 years ago
Slavi Pantaleev
95346f3117
Reorganize Postgres access (breaking change)
...
In short, this makes Synapse a 2nd class citizen,
preparing for a future where it's just one-of-many homeserver software
options.
We also no longer have a default Postgres superuser password,
which improves security.
The changelog explains more as to why this was done
and how to proceed from here.
4 years ago
Slavi Pantaleev
a47813585d
Rename file to prevent common mistake
...
Prompted by this: https://github.com/spantaleev/matrix-docker-ansible-deploy/issues/779#issuecomment-764807507
4 years ago
0hlov3
f86d781244
Updates the the caddy2 Readme and comment lines for dimension
4 years ago
0hlov3
a1ecaf54ef
Adds Example for Caddy2 Jitsi
4 years ago
Slavi Pantaleev
e2e6cfaa8b
Document Ansible's Python interpreter discovery some more
...
Fixes https://github.com/spantaleev/matrix-docker-ansible-deploy/issues/570
Fixes https://github.com/spantaleev/matrix-docker-ansible-deploy/issues/641
4 years ago
Slavi Pantaleev
63a49bb2dc
Do not expose /_synapse/admin publicly by default
...
Fixes #685 (Github Issue).
4 years ago
Panagiotis Vasilopoulos
8370ee0647
caddy2: removed unknown tls directive
4 years ago
0hlov3
bd69e4fdef
Merge branch 'master' of github.com:0hlov3/matrix-docker-ansible-deploy
4 years ago
0hlov3
59e1abb072
Corrects the Caddyfile
4 years ago
Slavi Pantaleev
6fefbc248a
Fix typo and wording
4 years ago
0hlov3
c366e26360
Updates exempes/caddy2/Caddyfile to SSL Grade A+
4 years ago
Olaf Schoenwald
e7921e305b
Comment in host-cars
4 years ago
Olaf Schoenwald
abf70f7772
Adds example for Caddy2 Caddyfile
4 years ago
Slavi Pantaleev
c6ab1c6a90
Riot is now Element
...
Fixes #586 (Github Issue)
4 years ago
Slavi Pantaleev
f18037ae42
Disable TLSv1.1 by default
5 years ago
Aaron Raimist
5366aef0da
Fix Caddy example config for Dimension
5 years ago
Marcel Ackermann
cb900d64dd
Listen 8448 required for apache
...
Listen 8448 directive makes apache listen on that port, without it federation does not work.
5 years ago
Slavi Pantaleev
d90e11213f
Update comment to make it accurate
5 years ago
liquidat
72d3514408
Move pipelining option to ansible.cfg
5 years ago
Julian Foad
3b69db3c1e
More Apache ProxyPass directives need 'nocanon'
...
Invitations weren't working for me until I added 'nocanon' to these additional places. Until then, invitations failed with "Invalid signature for server ..." errors, as in https://github.com/matrix-org/synapse/issues/3294 .
I didn't check whether the user_directory/search proxy line also needs it, I just assumed it should have it too.
The other two proxy lines in this example also include a 'retry=0' parameter. That's a separate issue; I haven't touched it here.
5 years ago
muccid
2793e24b5b
Addresses comments in PR. Fixes typo in docker-compose. Changes mount of static files to RO. Adds example and brief explaination for haproxy certificates. Fixes whitespaces in nginx.conf
5 years ago
sudneo
7f0b52e9e1
Formatting of haproxy.cfg
5 years ago
sudneo
f1a64df339
Formatting of haproxy.cfg
5 years ago
sudneo
06e8056173
Formatting of haproxy.cfg
5 years ago
sudneo
3dfa6a28f9
Typo
5 years ago
sudneo
b2e0e4efe3
Adds doc for HAproxy
5 years ago
Slavi Pantaleev
fcd96b5dee
Add missing options to ProxyPass
5 years ago
Slavi Pantaleev
3cb34e6998
Improve Synapse reverse-proxying Apache examples
...
Thanks to @ralfi!
5 years ago
Slavi Pantaleev
e22672911d
Add Server-Server API proxying to Apache example configuration
...
Contributed by @ralfi.
5 years ago
Slavi Pantaleev
d675cb3d4b
Serve /.well-known/matrix/server with proper Content-Type
5 years ago
Marcel Ackermann
d55db2bee2
quotes, simplify
5 years ago
Marcel Ackermann
18a2377472
missing Map /.well-known/matrix/server for server discovery
5 years ago
Slavi Pantaleev
b88db88cec
Mention ansible_connection=local
6 years ago
Slavi Pantaleev
5bfd22d13b
Fix incorrect inventory host_vars paths
6 years ago
Dan Arnfield
093859d926
Fix TRANSFORM_INVALID_GROUP_CHARS deprecation warning
6 years ago
Brendan Abolivier
cdac997ddb
Improve comments for Caddy's TLS instructions
6 years ago
Brendan Abolivier
e067db613c
Fix exception to proxying
6 years ago
jreichmann
084be8a194
Added comments noting that the TLS Certs might differ when using own certs
6 years ago
jreichmann
6d49fdea21
Remove single all-host config file (used as source for examples)
6 years ago
jreichmann
265dc2949d
Added example Caddyfiles for the containers
6 years ago
Slavi Pantaleev
c1a9549d54
Mention matrix_coturn_turn_external_ip_address in examples/hosts
6 years ago
Slavi Pantaleev
382e53bdee
Make examples/hosts look cleaner
...
Putting a lot of comments inbetween `[matrix-servers]` and the example
host line may make someone decide to clean up the comment
and accidentally skip-over the `[matrix-servers]` part.
6 years ago
Slavi Pantaleev
841b525e7f
Suggest ansible_ssh_pipelining=yes for hosts
6 years ago
Slavi Pantaleev
8660cd421e
Add example Apache configuration for Dimension
...
Discussed in #121 (Github Issue).
6 years ago
Slavi Pantaleev
d18fe3610f
Fix syntax problems in example Apache configuration
...
Related to #121 (Github Issue)
6 years ago
Slavi Pantaleev
a43bcd81fe
Rename some variables
6 years ago
Slavi Pantaleev
9a251e4e46
Remove some more references to localhost
...
Continuation of 1f0cc92b33
.
As an explanation for the problem:
when saying `localhost` on the host, it sometimes gets resolved to `::1`
and sometimes to `127.0.0.1`. On the unfortunate occassions that
it gets resolved to `::1`, the container won't be able to serve the
request, because Docker containers don't have IPv6 enabled by default.
To avoid this problem, we simply prevent any lookups from happening
and explicitly use `127.0.0.1`.
6 years ago
Slavi Pantaleev
5e8a7fd05b
Update own-webserver guide and add sample Apache configuration
...
This supersedes #59 (Github Pull Request),
which was greatly beneficial in creating our sample Apache configuration.
6 years ago
Slavi Pantaleev
e09b7435d1
Update documentation a bit
6 years ago