728x90 nginx4 [nginx] autoindex로 디렉토리 리스팅 하였을 때 cors 에러 server { server_name *; location / { root /; autoindex on; } listen 443 ssl; # managed by Certbot ssl_certificate /etc/letsencrypt/live/*/fullchain.pem; # managed by Certbot ssl_certificate_key /etc/letsencrypt/live/*/privkey.pem; # managed by Certbot include /etc/letsencrypt/options-ssl-nginx.conf; # managed by Certbot ssl_dhparam /etc/letsencrypt/ssl-dhparams.pem; # managed by Certbot } server.. Server/Linux 2023. 4. 10. [linux] nginx 사용시 proxy_pass 연결 안되는 경우 해결법 SELinux 계열 OS 사용시 Nginx-> proxy_pass 이용시 연결이 안되는 경우, 우선, 에러 코드를 본다. 에러코드 내용은 $ vi /var/log/nginx/error.log 위 명령어 실행하여 /var/log/nginx/error.log 를 확인하여 자세히 볼 수 있다. [crit] 20718#20718: *123 connect() to 127.0.0.1:3000 failed (13: Permission denied) while connecting to upstream, client: {클라이언트IP}, server: {서버IP}, request: "GET /favicon.ico HTTP/1.1", upstream: "http://127.0.0.1:3000/favicon.ico", ho.. Server/Linux 2022. 3. 30. [centos7] centos7 nginx 버전 오류 1. epel repository에 설치된 모든 모듈 삭제 $ sudo yum remove nginx-mod* $ sudo yum remove nginx $ sudo yum remove nginx -- install을 nginx로 했다면 위 명령어를 입력한다. 2. nginx official repository에서 설치 $ sudo yum install nginx-module-* 3. nginx 재시작 $ sudo systemctl restart nginx Server/Linux 2022. 3. 29. [docker] Nginx 사용 # nginx 이미지 검색 $ docker search nginx # docker nginx 이미지 가지고 오기 $ docker pull nginx //docker pull nginx:lasest //위 명령어로 실행해도 무방하다. //docker pull nginx:1.21.1 //위 명령어로 실행해도 무방하다. # 도커 이미지 확인 $ docker images docker 2022. 3. 27. 이전 1 다음 728x90