반응형 분류 전체보기77 websocket wss nginx 403에러 nginx reverse proxy 설정으로 서버를 구성한 상태에서ws:// 일 경우에는 문제없이 정상적으로 서비스가 되지만wss://에서 403 에러가 발생했다.wss://시에도 정상적으로 서비스를 위해서는 아래 header추가가 필요하다 - proxy_set_header Origin '';nginx 서버 : 192.168.0.7application서버 : 192.168.0.8 NGINX 설정 server { listen 80; listen 443 ssl; server_name test.karint.dev; ssl_certificate cert/all_dev.crt; ssl_certificate_key cert/dev.key; .. 2024. 6. 26. tomcat9 jmx jconsole 연결 옵션 tomcat9은 톰캣7, 8 버전과는 다르게 별도로 라이브러리를 추가할 필요가 없다. 톰캣 실행시 옵션을 추가하면 된다. 톰캣 9 문서https://tomcat.apache.org/tomcat-9.0-doc/monitoring.html Apache Tomcat 9 (9.0.89) - Monitoring and Managing TomcatMonitoring is a key aspect of system administration. Looking inside a running server, obtaining some statistics or reconfiguring some aspects of an application are all daily administration tasks. Note: This co.. 2024. 5. 8. window에서 mysql binary로 설치하기 윈도우에서 mysql을 인스톨러가 아닌 binary로 설치하는걸 기록한다.버전은 8.0.36아래 URL에서 버전을 8.0.36으로 변경후 Windows (x86, 64-bit), ZIP Archive 로 되어있는 파일을 다운로드 받는다. https://dev.mysql.com/downloads/mysql/ MySQL :: Download MySQL Community ServerSelect Version: 8.3.0 Innovation 8.0.36 Select Operating System: Select Operating System… Microsoft Windows Ubuntu Linux Debian Linux SUSE Linux Enterprise Server Red Hat Enterprise Linu.. 2024. 4. 29. nginx 수동 ip설정 header에 X-Forwarded-For 항목을 추가하면 된다. proxy_set_header X-Forwarded-For 192.168.1.1; upstream serverBackend { server localhost:7220; } server { listen 80; server www.karint.local; location / { add_header Referrer-Policy ""; proxy_pass http://serverBackend/; proxy_set_header X-Forwarded-For 192.168.1.1; add_header X-UA-Compatible IE=edge; proxy_set_header X-Forwarded-Host $server_name; proxy_set_he.. 2024. 4. 23. 이전 1 2 3 4 5 ··· 20 다음 반응형