使用Dockerfile创建带ssl认证的nginx容器

1、创建ssl.conf配置文件
cat ssl.conf
server {
listen 443 ssl;
server_name www.xxx.com; //写上域名

ssl_certificate /etc/nginx/ssl/nginx.key; //写上在Dockerfile里面的证书路径
ssl_certificate_key /etc/nginx/ssl/nginx.pem; //写上在Dockerfile里面的证书路径

location / {
root /usr/share/nginx/html;
index index.html index.htm;
}
}

2、从容器中拷贝default.conf文件加上自动跳转https
[root@taorui666 nginx]# vim default.conf

server {
listen 80;
listen [::]:80;
server_name www.xxx.com; //写域名
rewrite ^(.*) https://$server_name$1 permanent; //跳转

3、准备好证书和站点文件并编写Dockerfile
ls

[root@taorui666 nginx]# cat Dockerfile 
FROM nginx:stable

# copy the custom website into the image
COPY website /usr/share/nginx/html/

# copy the SSL configuration file into the image
COPY ssl.conf /etc/nginx/conf.d/ssl.conf
COPY default.conf  /etc/nginx/conf.d/default.conf 

# download the SSL key and certificate into the image
COPY nginx.key /etc/nginx/ssl/nginx.key
COPY nginx.pem /etc/nginx/ssl/nginx.pem

# expose the https port
EXPOSE 443

4、生成镜像
docker build -t test-nginx:1.0 .

5、运行容器
docker run -itd -p 443:443 -p 80:80 test-nginx:1.0 #映射端口

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包

打赏作者

陶瑞666

你的鼓励将是我创作的最大动力

¥1 ¥2 ¥4 ¥6 ¥10 ¥20
扫码支付:¥1
获取中
扫码支付

您的余额不足,请更换扫码支付或充值

打赏作者

实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值