-
Notifications
You must be signed in to change notification settings - Fork 0
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Docker Service - nginx #4
Comments
open ssl을 적용하는 부분에서
2.로컬에서 받아서 그것을 이용을 해야하는 것인지 solve) 도컬파일 완성본을 보니 결국엔 내부에서 만들어서 사용하는 것 같다 |
ssl_ciphers 여기 value에 무엇을 넣어주어야하는지 모르겠음
|
nginx랑 openssl를 연결을 하니까 nginx첫 부분이 뜨지 않음! |
Dockerfile로 이미지를 만들 때, RUN apt-get install openssl -y 명령어를 사용하여 openssl을 설치하고 키 생성 |
아마 nginx config에서 ssl 세팅을 안해서 그럴 수도? 어떻게 안 뜨는지 봐야알듯 |
이거 nginx부분만 가지고 와서? 돌려 본거 같은데 안된다고 오지게 뭐라함 |
ssl 파일 다 적용하고 docker build . -t nginx 로 이미지생성하고 docker run -d -it -p 80:80 -p 443:443 --name nginx nginx:latest |
포트가 두 번 작성되는 건 2개 포트를 열겠다는 의미인가요?! |
80은 서브젝트에서 무시하라고 해서 443으로만 접근하면 될 것 같습니다요 |
https://velog.io/@aseungbo/42Inception nginx container |
The text was updated successfully, but these errors were encountered: