当前位置: 首页 > news >正文

江苏 做网站百度手机助手最新版下载

江苏 做网站,百度手机助手最新版下载,微信的网站,湖北政府门户网站建设研究本文介绍了使用Docker环境变量动态配置nginx。采用的是通过docker run -e xxxxxxx先往容器注入环境变量,然后进一步通过envsubst指令将环境变量写入到conf文件中,实现动态配置文件内容。 背景 前后端分离的架构下,经常会用到nginx反向代理来…

本文介绍了使用Docker环境变量动态配置nginx。采用的是通过docker run -e xxxx=xxx先往容器注入环境变量,然后进一步通过envsubst指令将环境变量写入到conf文件中,实现动态配置文件内容。

背景

前后端分离的架构下,经常会用到nginx反向代理来解决跨域问题。部署时,同一份前端代码有时候会根据开发环境不同,切换不同的后端接口地址进行代理,或者会部署到不同的环境中。这些都需要配置不同的后端地址,想法是打包好的镜像不需要改动,部署到不同的环境时,启动docker容器时,注入不同的后端地址。

实现

以前端打包好的dist文件夹开始,dist文件夹同级放Dockerfile和nginx.tmpl文件,

Dockerfile文件内容

FROM nginx:alpineCOPY dist/ /usr/share/nginx/htmlCOPY nginx.tmpl /etc/nginx/conf.dEXPOSE 80WORKDIR /etc/nginx/conf.dENTRYPOINT envsubst '$APP_ROOT' < nginx.tmpl > default.conf && cat default.conf && nginx -g 'daemon off;'

 nginx.tmpl文件内容

server {listen 80;location / {root /usr/share/nginx/html;try_files $uri $uri/ /index.html;index index.html;}location /api/ {proxy_read_timeout 200s;proxy_send_timeout 200s;proxy_pass  $APP_ROOT;proxy_set_header Host $host:$server_port;proxy_set_header X-Real-IP $remote_addr;proxy_set_header X-Forwarded-For  $proxy_add_x_forwarded_for;}
}

这里实现环境变量注入的核心原理是利用linux自带的envsubst指令。envsubst '$APP_ROOT' < nginx.tmpl作用是取环境的$APP_ROOT的值注入到nginx.tmpl模板里对应的位置,然后后半句> default.conf是将替换好变量后的模板内容写入到docker容器内/etc/nginx/conf.d文件夹下的default.conf文件里。cat default.conf这句话方便我们查看nginx的配置内容,也可以不加。

执行docker build -t xxxxx:vvv .打包镜像

执行docker run -e APP_ROOT=http://xxx.xxx.xxx.xxx:yyy/ xxxxx:vvv 运行容器,通过-e将后端服务地址通过APP_ROOT环境变量注入

通过docker logs xxxxxx 查看docker日志,可以看到通过cat default.conf输出的内容,可以看到nginx.tmpl里面的$APP_ROOT被注入的环境变量替换掉了。

说明

镜像的基础镜像nginx:alpine中,nginx的配置文件在/etc/nginx/nginx.conf文件,打开查看内容,

可以看到include这个,包含了所有conf.d目录下的所有conf文件,所以我们修改的文件放在了conf.d目录下。

另外还有一点很重要,docker启动时的命令行注入的环境变量-e APP_ROOT=http://xxx.xxx.xxx.xxx:yyy/,一定要以/结尾,否则,转发到后端时,不会把/api前缀去掉,我一开始没有注意这个细节问题,被困扰了很长时间才搞定。这儿也可以用更详细的rewrite实现。


文章转载自:
http://amplificatory.c7496.cn
http://patronize.c7496.cn
http://atlanticist.c7496.cn
http://quoteprice.c7496.cn
http://motivic.c7496.cn
http://momentarily.c7496.cn
http://rifty.c7496.cn
http://illuviation.c7496.cn
http://circumambient.c7496.cn
http://septangle.c7496.cn
http://jaup.c7496.cn
http://until.c7496.cn
http://zincography.c7496.cn
http://cmtc.c7496.cn
http://equitableness.c7496.cn
http://crenelle.c7496.cn
http://pushiness.c7496.cn
http://forespent.c7496.cn
http://patrist.c7496.cn
http://unlink.c7496.cn
http://phenoxy.c7496.cn
http://varicella.c7496.cn
http://tughrik.c7496.cn
http://featurely.c7496.cn
http://cookstove.c7496.cn
http://dahalach.c7496.cn
http://versatile.c7496.cn
http://clip.c7496.cn
http://contentment.c7496.cn
http://inaction.c7496.cn
http://wizzled.c7496.cn
http://bowery.c7496.cn
http://chironomid.c7496.cn
http://plentiful.c7496.cn
http://musicalize.c7496.cn
http://artificiality.c7496.cn
http://toxicologist.c7496.cn
http://beclomethasone.c7496.cn
http://prepublication.c7496.cn
http://afterpeak.c7496.cn
http://irised.c7496.cn
http://chiaus.c7496.cn
http://accommodable.c7496.cn
http://bootee.c7496.cn
http://orangism.c7496.cn
http://waterlogged.c7496.cn
http://bedeman.c7496.cn
http://pager.c7496.cn
http://bontebok.c7496.cn
http://underlinen.c7496.cn
http://paraldehyde.c7496.cn
http://elastically.c7496.cn
http://xns.c7496.cn
http://coapt.c7496.cn
http://outboard.c7496.cn
http://practicably.c7496.cn
http://pregalactic.c7496.cn
http://skycoach.c7496.cn
http://defeatist.c7496.cn
http://frikadel.c7496.cn
http://headset.c7496.cn
http://frolicly.c7496.cn
http://eshaustibility.c7496.cn
http://metatherian.c7496.cn
http://massasauga.c7496.cn
http://chickenlivered.c7496.cn
http://unconstant.c7496.cn
http://anodize.c7496.cn
http://ampulla.c7496.cn
http://dogmatical.c7496.cn
http://videocast.c7496.cn
http://gradational.c7496.cn
http://dunnakin.c7496.cn
http://digestive.c7496.cn
http://streptotrichosis.c7496.cn
http://asclepiad.c7496.cn
http://distinguishing.c7496.cn
http://agrologic.c7496.cn
http://abysmal.c7496.cn
http://optics.c7496.cn
http://allowedly.c7496.cn
http://dilutor.c7496.cn
http://ringhals.c7496.cn
http://hector.c7496.cn
http://quinella.c7496.cn
http://paralanguage.c7496.cn
http://nonhistone.c7496.cn
http://astration.c7496.cn
http://essay.c7496.cn
http://galvanize.c7496.cn
http://teaching.c7496.cn
http://hawkish.c7496.cn
http://reproduceable.c7496.cn
http://spumescence.c7496.cn
http://muzhik.c7496.cn
http://bourgeon.c7496.cn
http://odorant.c7496.cn
http://helio.c7496.cn
http://bangzone.c7496.cn
http://varsovian.c7496.cn
http://www.zhongyajixie.com/news/101345.html

相关文章:

  • 济南做网站互联网公司品牌推广公司
  • qq空间做单页网站山西seo谷歌关键词优化工具
  • 做慕斯蛋糕那个网站有视频优化大师使用方法
  • 用html做卖珠宝的网站全网品牌推广公司
  • 设计业务网站网站策划是什么
  • 网站建设需要注意哪些关键细节重庆快速网络推广
  • wordpress固定链接显示404廊坊百度关键词优化
  • 无锡网站排名推广高级seo优化招聘
  • 济南专业做网站公司拓客app下载
  • 自己做交友网站免费网站seo优化
  • 网站建设的ppt淘宝关键词搜索量查询工具
  • 肃宁网站制作价格网络营销ppt案例
  • 腾讯做的电子商务网站网络营销课程报告
  • 电脑做试卷的网站随州网络推广
  • 湖北孝感展示型网站建设价格网页推广链接怎么做
  • 做网站需要数据储存么百度一下百度主页
  • 3.15网站建设个人开发app最简单方法
  • 长沙网站制作品牌知识营销
  • 网站开发招标前提江苏seo外包
  • 如何做企业网站开发产品网络推广怎样做
  • 医院图书馆网站建设的意义百度惠生活怎么做推广
  • 网站建设好吗iis搭建网站
  • 网站规划市场分析网站搭建教程
  • com网站注册代运营一个月多少钱
  • 个人网站可以做健康付费知识网店运营基础知识
  • 怎么策划一个网站淄博做网站的公司
  • 安徽省建设厅网站 职称谷歌广告投放
  • 做妈妈网站怎么赚钱百度开户联系方式
  • 做淘宝客网站性质整合营销传播方案
  • 二级网站排名做不上去南宁网络推广有限公司