13 lines
221 B
Text
13 lines
221 B
Text
|
server {
|
||
|
listen 443 ssl;
|
||
|
listen [::]:443 ssl;
|
||
|
|
||
|
server_name matrix.${env['domain']};
|
||
|
|
||
|
location / {
|
||
|
proxy_pass http://127.0.0.1:${env['ports']['synapse']};
|
||
|
|
||
|
client_max_body_size 50M;
|
||
|
}
|
||
|
}
|