在 nginx 配置中使用环境变量(1.19 新增)
开箱即用的 nginx 不支持大多数配置块中的环境变量。但是这个镜像有个函数,会在nginx启动前提取环境变量。
这是使用 docker-compose.yml 的示例:
web:
image: nginx
volumes:
- ./templates:/etc/nginx/templates
ports:
- "8080:80"
environment:
- NGINX_HOST=foobar.com
- NGINX_PORT=8080
https://hub.docker.com/_/nginx
多了一个映射,模板配置文件。
默认模板文件名为****.templates
简单说就是你再映射目录的配置文件,假设为test.com.conf,无论里面写了什么模板文件,都会被渲染后去掉后缀名放入/etc/nginx/conf.d/文件夹去。
那么我们增加站点配置的时候就是增加一个配置文件:****.conf.templates,nginx容器启动的时候就可以渲染此文件后,改名为****.conf放入conf.d
而且渲染是支持docker变量的。
具体使用方法为:
在你映射的templates目录下建立test.conf.templates文件,不要建立default.conf.templates,渲染后会覆盖nginx当中默认的default.conf
server { listen ${NGINX_PORT}; listen [::]:${NGINX_PORT}; server_name _; charset utf-8; location / { root /storage; index index.html; autoindex on; autoindex_exact_size off; autoindex_localtime on; add_header Cache-Control no-store; } }
使用前面示例的yaml启动,sh连进容器
nginx -T,检查并查看配置文件
刚好看到我们渲染过的代码块。
访问的时候404是因为只映射了templates,没映射/storage,存储目录,这个代码块是配置目录浏览的。