소스 검색

Add map directive to the base of nginx.conf

This needs to be added for WebSocket upgrades to work properly (see doc:
http://nginx.org/en/docs/http/websocket.html)
pull/804/head
Béla Becker 5 년 전
부모
커밋
7bc9be95cb
1개의 변경된 파일5개의 추가작업 그리고 0개의 파일을 삭제
  1. +5
    -0
      roles/matrix-nginx-proxy/templates/nginx/nginx.conf.j2

+ 5
- 0
roles/matrix-nginx-proxy/templates/nginx/nginx.conf.j2 파일 보기

@@ -45,6 +45,11 @@ http {
keepalive_timeout 65;

#gzip on;
{# Map directive needed for proxied WebSocket upgrades #}
map $http_upgrade $connection_upgrade {
default upgrade;
'' close;
}

include /etc/nginx/conf.d/*.conf;
}

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