소스 검색

Increase max body size for the nginx proxy

Otherwise, we can't support large media file uploads.
pull/6/head
Slavi Pantaleev 9 년 전
부모
커밋
1cd227b699
2개의 변경된 파일15개의 추가작업 그리고 9개의 파일을 삭제
  1. +1
    -1
      roles/matrix-server/templates/nginx-conf.d/matrix-riot-web.conf.j2
  2. +14
    -8
      roles/matrix-server/templates/nginx-conf.d/matrix-synapse.conf.j2

+ 1
- 1
roles/matrix-server/templates/nginx-conf.d/matrix-riot-web.conf.j2 파일 보기

@@ -34,4 +34,4 @@ server {
proxy_pass http://riot:8765;
proxy_set_header X-Forwarded-For $remote_addr;
}
}
}

+ 14
- 8
roles/matrix-server/templates/nginx-conf.d/matrix-synapse.conf.j2 파일 보기

@@ -15,10 +15,10 @@ server {
}

server {
listen 443 ssl http2;
listen [::]:443 ssl http2;
listen 443 ssl http2;
listen [::]:443 ssl http2;

server_name {{ hostname_matrix }};
server_name {{ hostname_matrix }};

server_tokens off;
root /dev/null;
@@ -30,8 +30,14 @@ server {
ssl_prefer_server_ciphers on;
ssl_ciphers "EECDH+AESGCM:EDH+AESGCM:AES256+EECDH:AES256+EDH";

location /_matrix {
proxy_pass http://synapse:8008;
proxy_set_header X-Forwarded-For $remote_addr;
}
}
location /_matrix {
proxy_pass http://synapse:8008;
proxy_set_header X-Forwarded-For $remote_addr;

# These are intentionally large.
# Note that Synapse enforces its own limits, which are smaller.
client_body_buffer_size 25M;
client_max_body_size 100M;
proxy_max_temp_file_size 0;
}
}

불러오는 중...
취소
저장