前言
【nginx配置文件使用环境变量】由于现在需要部署Nginx的Docker,希望nginx配置文件里面有关server_name在启动容器前动态修改 。学习envsubst
但是由于nginx的配置文件不支持使用环境变量 。网上找了好些方案,最终选择使用envsubst的方式改写nginx配置文件 。
envsubst就是将环境变量替换文件里面指定标记的值 。
例如有如下文件env.conf,内容如下
[test]ip = ${ip}port = ${port}url = http://${ip}:${port}/index.htmlphone = ${phone}
当执行export ip=192.168.1.5,export port=8081,export phone=13522223334写入环境变量 。
然后执行envsubst < env.conf > env.new.conf,就可以生成如下的env.new.conf
[test]ip = 192.168.1.5port = 8081url = http://192.168.1.5:8081/index.htmlphone = 13522223334
还可以指定只替换部分环境变量,source env.env && envsubst '$ip;$phone' < env.conf,这样只会替换ip和phone这两个变量 。应用nginx配置文件
上面只替换部分环境变量,在linux测试只能用单引号,用双引号无效,分隔符试过, . ; |这四种都可以,我估计还有更多分隔符 。
docker-compose.yml文件如下
version: "3" services:nginx:image: nginx:1.20.1-alpinecontainer_name: nginxports:- 80:80- 443:443environment:- NGINX_HOST=www.janbar.com- NGINX_PORT=80volumes:- /root/janbar.temp:/etc/nginx/conf.d/janbar.tempcommand: /bin/sh -c "envsubst < /etc/nginx/conf.d/janbar.temp > /etc/nginx/conf.d/default.conf && exec nginx -g 'daemon off;'"network_mode: bridgerestart: always
/root/janbar.temp文件内容如下
server {listen${NGINX_PORT};listen[::]:${NGINX_PORT};server_name${NGINX_HOST};location / {root/usr/share/nginx/html;indexindex.html index.htm;}error_page500 502 503 504/50x.html;location = /50x.html {root/usr/share/nginx/html;}}
按照上述docker-compose.yml配置文件最终生成docker容器里面的配置文件如下cat
/etc/nginx/conf.d/default.conf
server {listen80;listen[::]:80;server_namewww.janbar.com;location / {root/usr/share/nginx/html;indexindex.html index.htm;}error_page500 502 503 504/50x.html;location = /50x.html {root/usr/share/nginx/html;}}
总结经过上述骚操作,最终可以通过环境变量的方式更新nginx的docker容器内部配置文件 。大功告成!
推荐阅读
- 某厂面试:如何优雅使用 SPI 机制
- 齐国田单使用哪个战术大败燕军,齐国与燕国作战,燕国大败对吗
- 孕妇可以详细使用化妆品吗
- 正确认识代理IP,合理使用代理IP
- python怎么验证代理IP是否有效
- 莳萝怎么使用,使用帮助
- 双反转相机原理及使用方法介绍
- Centos7 搭建minio集群配合nginx做文件服务器
- 戴什么耳机损伤最小?耳机科学使用指南来了
- 快手小店微信小商店等电商平台如何使用菜鸟打印电子面单