Finish confs

This commit is contained in:
Florian RICHER 2023-05-20 17:23:11 +02:00
parent 3f92c47e1c
commit 2566f36c51
15 changed files with 148 additions and 30 deletions

View file

@ -0,0 +1,17 @@
server {
listen 80 default_server;
server_name matrix.mrdev023.fr;
# Traefik -> nginx -> synapse
location /_matrix {
proxy_pass http://synapse:8008;
proxy_set_header X-Forwarded-For $remote_addr;
client_max_body_size 128m;
}
location /.well-known/matrix/ {
root /var/www/;
default_type application/json;
add_header Access-Control-Allow-Origin *;
}
}