전체 글530 [ 도커(Docker) ] docker-compose dev, prod 모드로 리팩토링하기 📍 docker-compose dev, prod 모드로 리팩토링하기 docker-compose를 사용하여 nginx를 배포할 때 매번 가상 환경에서 SSL을 적용하는 과정을 거쳐야 했다. 예를 들어 nginx.conf의 server코드를 80에서 443으로 바꾸고 인증서의 경로를 추가하는 과정과 docker-compose - volumes에 letsencrypt 인증서를 넣는 과정이 포함됐다. 하지만 매번 SSL을 적용하는 과정을 거치다 보니 번거롭고 무엇보다 귀찮았다. 그래서 docker-compose에 아예 SSL을 적용한 버전과 SSL을 적용하지 않은 버전으로 나누면 어떨까?라는 생각을 했다. docker 공식문서를 찾아보니 -f 명령어를 사용하여 특정 파일을 빌드할 수 있다고 했다. 만약, 여러 .. 2022. 3. 16. [ 리액트(React) ] Uncaught SyntaxError: Unexpected token '<’ 오류 해결하기 사이트에 배포하기 위해 Webpack을 사용하여 npm run build 실행 후 /dist에 있는 index.html파일을 실행해봤는데 정상적으로 페이지가 나타나지 않아 console창을 열어보니 Uncaught SyntaxError: Unexpected token ' 2022. 3. 15. [ 엔진엑스(Nginx) ] nginx: [emerg] cannot load certificate BIO_new_file() failed SSL 오류 해결하기 📍 nginx: [emerg] cannot load certificate BIO_new_file() failed SSL 오류 해결하기 Docker-compose로 배포하는 과정에 다음과 같은 오류로 인해 배포 사이트에 SSL을 적용할 수 없었다. nginx: [emerg] cannot load certificate "/etc/nginx/ssl/live//fullchain.pem" : BIO_new_file() failed (SSL: error:02001002:system library:fopen:No such file or directory:fopen('/etc/nginx/ssl/live//fullchain.pem','r') error:2006D080:BIO routines:BIO_new_file:no .. 2022. 3. 14. [ 엔진엑스(Nginx) ] [ warn ] the "ssl" directive is deprecated, use the listen ... 📍 the "ssl" directive is deprecated, use the listen ... Docker를 이용해 배포 환경에서 nginx.conf를 세팅하고 실행을 하는데 다음과 같은 경고문이 떴다. nginx_1 | 2022/03/10 22:11:52 [warn] 1#1: the "ssl" directive is deprecated, use the "listen ... ssl" directive instead in /etc/nginx/nginx.conf:35 nginx_1 | nginx: [warn] the "ssl" directive is deprecated, use the "listen ... ssl" directive instead in /etc/nginx/nginx.conf:35 Err.. 2022. 3. 11. [ 깃(Git) ] 특정 Branch를 clone하고 싶을 때 📍 특정 Branch만 clone하고 싶을 때 보통 git clone 명령어를 사용하면 default Branch를 받아오는 경우가 있다. 하지만 default Branch말고 다른 특정 Branch를 clone하고 싶다면 다음 명령어로 clone 할 수 있다. # 명령어 git clone -b --single-branch # example git clone -b maintenance --single-branch https://github.com/YWTechIT/.git 2022. 3. 10. 이전 1 ··· 15 16 17 18 19 20 21 ··· 106 다음