Cleaned up some missing services by removing sensitive data into .env files

This commit is contained in:
2025-07-06 16:35:26 +00:00
parent abaf169941
commit 5e87919766
7 changed files with 159 additions and 1 deletions

17
synapse/nginx/matrix.conf Normal file
View File

@@ -0,0 +1,17 @@
server {
listen 80 default_server;
server_name nearfuture.industries;
# 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 *;
}
}