在k8s中将nginx.conf文件内容创建为ConfigMap挂载到pod容器中
K8s中将nginx配置文件映射到容器中
·
1、创建configmap
2、定义数据卷挂载到容器
注:nginx配置文件内容
server {
listen 80;
listen [::]:80;
server_name localhost;
#access_log /var/log/nginx/host.access.log main;
location / {
root /usr/share/nginx/html;
index index.html index.htm;
}
#error_page 404 /404.html;
# redirect server error pages to the static page /50x.html
#
error_page 500 502 503 504 /50x.html;
location = /50x.html {
root /usr/share/nginx/html;
}
}
更多推荐
已为社区贡献1条内容
所有评论(0)