728x90
Nginx에서 WebSocket을 사용하려면 Nginx환경설정(Nginx.conf)에서 아래와 같이 프록시 포워딩을 추가합니다.
location /ws {
proxy_pass http://아이피:포트;
proxy_http_version 1.1;
proxy_set_header Upgrade $http_upgrade;
proxy_set_header Connection "Upgrade";
}
참고주소
http://nginx.org/en/docs/http/ngx_http_proxy_module.html#proxy_http_version
728x90
'Tips, Tricks > Server, Windows, Linux' 카테고리의 다른 글
JKS Keystore to PKCS12 Keystore, Change a PKCS12 Keystore password (0) | 2023.03.31 |
---|---|
tar을 통한 tar, tar.gz 압축/해제 (0) | 2023.03.27 |
Automatic .bat file execution when Windows starts(윈도우 시작시 자동으로 bat파일 실행하기) (0) | 2021.03.26 |
Registering and using the service on CentOS 7(CentOS 7에 서비스 등록하고 사용하기) (0) | 2021.03.26 |
.bat without cmd window(CMD창 없이 .bat 파일 실행하기) (0) | 2021.03.26 |