nginx之配置文件公用抽取
nginx之配置文件公用抽取
因为某些原因,需要同时部署同一应用两个不同分支的代码,而配置文件存在较大重复,因此有此篇。
最近构建的过程中遇到了一些跟nginx配置相关的问题,记录下。
简单说下构建的状况:前后端分离,jenkins + jar包+nginx部署前端。
#user nobody;
worker_processes 1;
#error_log logs/error.log;
#error_log logs/error.log notice;
#error_log logs/error.log info;
#pid logs/nginx.pid;
events {
worker_connections 1024;
}
http {
include mime.types;
default_type application/octet-stream;
#log_format main '$upstream_addr $remote_addr - $remote_user [$time_local] "$request" '
#'$status $body_bytes_sent "$http_referer" '
#'"$http_user_agent" "$http_x_forwarded_for"';
#access_log logs/access.log main;
sendfile on;
#tcp_nopush on;
#keepalive_timeout 0;
keepalive_timeout 65;
#gzip on;
# 服务器有限,暂且部署到当前服务器上
upstream applicationName_server {
ip_hash;
server 127.0.0.1:8081;
server 127.0.0.1:8082;
}
server {
listen 8888;
server_name localhost;
# 上传文件大小限制100M
client_max_body_size 100m;
#charset koi8-r;
#access_log logs/host.access.log main;
add_header BackendIP "$upstream_addr;" always;
set $ROOT_HTML /opt/soft/applicationName/backend/ui/html;
location ^~/applicationName/login {
proxy_pass http://applicationName_server;
add_header 'Cache-Control' 'no-cache';
proxy_set_header Host $http_host;
proxy_set_header X-Real-IP $remote_addr;
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
}
location ^~/applicationName/logout {
proxy_pass http://applicationName_server;
add_header 'Cache-Control' 'no-cache';
proxy_set_header Host $http_host;
proxy_set_header X-Real-IP $remote_addr;
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
}
location /applicationName/api {
proxy_pass http://applicationName_server;
add_header 'Cache-Control' 'no-cache';
proxy_set_header Host $http_host;
proxy_set_header X-Real-IP $remote_addr;
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
}
location ^~/applicationName/cas {
proxy_pass http://applicationName_server;
add_header 'Cache-Control' 'no-cache';
proxy_set_header Host $http_host;
proxy_set_header X-Real-IP $remote_addr;
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
}
location /applicationName/artery {
proxy_pass http://applicationName_server;
add_header 'Cache-Control' 'no-cache';
proxy_set_header Host $http_host;
proxy_set_header X-Real-IP $remote_addr;
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
}
location /applicationName/artery/code {
proxy_pass http://applicationName_server/applicationName/code/;
add_header 'Cache-Control' 'no-cache';
proxy_set_header Host $http_host;
proxy_set_header X-Real-IP $remote_addr;
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
}
location ^~/static {
root $ROOT_HTML/applicationName;
}
location / {
root $ROOT_HTML;
rewrite ^ /applicationName break;
}
location /applicationName {
if ($http_cookie = "") {
add_header Set-Cookie "thguid=$request_id;Path=/;Max-Age=315360000" always;
rewrite ^ /index.html break;
}
root $ROOT_HTML;
index index.html;
try_files $uri $uri/ /index.html;
}
location ~* ^.+\.(ico|js|gif|jpg|jpeg|png)$ {
root $ROOT_HTML;
try_files $uri $uri/ /index.html =404;
expires 1d;
}
location ~* ^.+\.(eot|ttf|otf|woff|svg)$ {
root $ROOT_HTML;
try_files $uri $uri/ /index.html =404;
expires 7d;
}
#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 html;
}
}
server {
listen 7777;
server_name localhost;
# 上传文件大小限制100M
client_max_body_size 100m;
#charset koi8-r;
#access_log logs/host.access.log main;
add_header BackendIP "$upstream_addr;" always;
set $ROOT_HTML /opt/soft/applicationName/backend/ui/otherhtml;
location ^~/applicationName/login {
proxy_pass http://127.0.0.1:8087;
add_header 'Cache-Control' 'no-cache';
proxy_set_header Host $http_host;
proxy_set_header X-Real-IP $remote_addr;
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
}
location ^~/applicationName/logout {
proxy_pass http://127.0.0.1:8087;
add_header 'Cache-Control' 'no-cache';
proxy_set_header Host $http_host;
proxy_set_header X-Real-IP $remote_addr;
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
}
location /applicationName/api {
proxy_pass http://127.0.0.1:8087;
add_header 'Cache-Control' 'no-cache';
proxy_set_header Host $http_host;
proxy_set_header X-Real-IP $remote_addr;
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
}
location ^~/applicationName/cas {
proxy_pass http://127.0.0.1:8087;
add_header 'Cache-Control' 'no-cache';
proxy_set_header Host $http_host;
proxy_set_header X-Real-IP $remote_addr;
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
}
location /applicationName/artery {
proxy_pass http://127.0.0.1:8087;
add_header 'Cache-Control' 'no-cache';
proxy_set_header Host $http_host;
proxy_set_header X-Real-IP $remote_addr;
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
}
location /applicationName/artery/code {
proxy_pass http://127.0.0.1:8087/applicationName/code/;
add_header 'Cache-Control' 'no-cache';
proxy_set_header Host $http_host;
proxy_set_header X-Real-IP $remote_addr;
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
}
location ^~/static {
root $ROOT_HTML/applicationName;
}
location / {
root $ROOT_HTML;
rewrite ^ /applicationName break;
}
location /applicationName {
if ($http_cookie = "") {
add_header Set-Cookie "thguid=$request_id;Path=/;Max-Age=315360000" always;
rewrite ^ /index.html break;
}
root $ROOT_HTML;
index index.html;
try_files $uri $uri/ /index.html;
}
location ~* ^.+\.(ico|js|gif|jpg|jpeg|png)$ {
root $ROOT_HTML;
try_files $uri $uri/ /index.html =404;
expires 1d;
}
location ~* ^.+\.(eot|ttf|otf|woff|svg)$ {
root $ROOT_HTML;
try_files $uri $uri/ /index.html =404;
expires 7d;
}
#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 html;
}
}
}
刚开始的时候只监听了8888
端口(后端端口8081
,8082
),用来构建dev分支代码。后来,需要构建出一个新的分支,又不能影响dev分支。因此新增一个7777
端口进行监听(后端对应端口8087
),两个server除了端口不同外就只有proxy_pass对应的地址不同,html的地址不同,因此,考虑将相同部分抽出来。
在conf同级新建conf.d
文件夹,新建dev.conf和performance.conf
server {
listen 8888;
server_name localhost;
# 上传文件大小限制100M
client_max_body_size 100m;
#charset koi8-r;
#access_log logs/host.access.log main;
add_header BackendIP "$upstream_addr;" always;
set $ROOT_HTML /opt/soft/applicationName/backend/ui/html;
set $SERVER_URL applicationName_server;
include common-route.conf;
}
server {
listen 7777;
server_name localhost;
# 上传文件大小限制100M
client_max_body_size 100m;
#charset koi8-r;
#access_log logs/host.access.log main;
add_header BackendIP "$upstream_addr;" always;
set $ROOT_HTML /opt/soft/applicationName/backend/ui/otherhtml;
set $SERVER_URL 127.0.0.1:8087;
include common-route.conf;
}
这里将原本两个不同点通过设置ROOT_HTML
和SERVER_URL
来解决。其余的内容放到conf文件夹下的common-router.conf
中
# 通用路由
location ^~/applicationName/login {
proxy_pass http://$SERVER_URL;
add_header 'Cache-Control' 'no-cache';
proxy_set_header Host $http_host;
proxy_set_header X-Real-IP $remote_addr;
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
}
location ^~/applicationName/logout {
proxy_pass http://$SERVER_URL;
add_header 'Cache-Control' 'no-cache';
proxy_set_header Host $http_host;
proxy_set_header X-Real-IP $remote_addr;
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
}
location /applicationName/api {
proxy_pass http://$SERVER_URL;
add_header 'Cache-Control' 'no-cache';
proxy_set_header Host $http_host;
proxy_set_header X-Real-IP $remote_addr;
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
}
location ^~/applicationName/cas {
proxy_pass http://$SERVER_URL;
add_header 'Cache-Control' 'no-cache';
proxy_set_header Host $http_host;
proxy_set_header X-Real-IP $remote_addr;
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
}
location /applicationName/artery {
proxy_pass http://$SERVER_URL;
add_header 'Cache-Control' 'no-cache';
proxy_set_header Host $http_host;
proxy_set_header X-Real-IP $remote_addr;
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
}
location /applicationName/artery/code {
#return 200 http://$SERVER_URL/applicationName/code;
rewrite ^/(.*)/code/(.*)$ /applicationName/code/$2 permanent;
#proxy_pass $CODE_URL;
#proxy_pass http://$SERVER_URL/applicationName/code/;
#proxy_pass http://127.0.0.1:8087/applicationName/code/;
add_header 'Cache-Control' 'no-cache';
proxy_set_header Host $http_host;
proxy_set_header X-Real-IP $remote_addr;
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
}
location /applicationName/code {
proxy_pass http://$SERVER_URL;
proxy_set_header Host $http_host;
proxy_set_header X-Real-IP $remote_addr;
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
}
location ^~/static {
root $ROOT_HTML/applicationName;
}
location / {
root $ROOT_HTML;
rewrite ^ /applicationName break;
}
location /applicationName {
if ($http_cookie = "") {
add_header Set-Cookie "thguid=$request_id;Path=/;Max-Age=315360000" always;
rewrite ^ /index.html break;
}
root $ROOT_HTML;
index index.html;
try_files $uri $uri/ /index.html;
}
location ~* ^.+\.(ico|js|gif|jpg|jpeg|png)$ {
root $ROOT_HTML;
try_files $uri $uri/ /index.html =404;
expires 1d;
}
location ~* ^.+\.(eot|ttf|otf|woff|svg)$ {
root $ROOT_HTML;
try_files $uri $uri/ /index.html =404;
expires 7d;
}
#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 html;
}
nginx.conf如下
#user nobody;
worker_processes 1;
#error_log logs/error.log;
#error_log logs/error.log notice;
#error_log logs/error.log info;
#pid logs/nginx.pid;
events {
worker_connections 1024;
}
http {
include mime.types;
default_type application/octet-stream;
#log_format main '$upstream_addr $remote_addr - $remote_user [$time_local] "$request" '
#'$status $body_bytes_sent "$http_referer" '
#'"$http_user_agent" "$http_x_forwarded_for"';
#access_log logs/access.log main;
sendfile on;
#tcp_nopush on;
#keepalive_timeout 0;
keepalive_timeout 65;
#gzip on;
# 服务器有限,暂且部署到当前服务器上
upstream applicationName_server {
ip_hash;
server 127.0.0.1:8081;
server 127.0.0.1:8082;
}
include /usr/local/nginx/conf.d/*.conf;
}
虽然上面的配置平平无奇,不过走向正确配置的道路还是遇到了些波折。
conf.d
文件夹下的两个conf文件的include文件的路径问题,..
啥的用不了,反倒是看起来不正确的include common-route.conf;
能够正确引用。另一点是,common-route.conf
不能放到conf.d
下面,报的错忘了什么了。原先
conf.d
conf文件的SERVER_URL
是这样的http://applicationName_server
,后来报了invalid port
,把http://
去掉放到具体的server里面了。单值代码加载,在未做改造前这样
location /applicationName/artery/code {
proxy_pass http://applicationName_server/applicationName/code/;
add_header 'Cache-Control' 'no-cache';
proxy_set_header Host $http_host;
proxy_set_header X-Real-IP $remote_addr;
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
}
第一次改造
location /applicationName/artery/code { proxy_pass http://$SERVER_URL/applicationName/code/; add_header 'Cache-Control' 'no-cache';
proxy_set_header Host $http_host;
proxy_set_header X-Real-IP $remote_addr;
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
}
这种直接404,而如果把
$SERVER_URL
改成具体的后端地址,则7777和8888端口中有一个可以正常访问单值代码。谷歌的几个方案都说是什么resolver
的问题,但照着改还是不工作再后来改造使用rewrite来改写path
location /applicationName/artery/code { rewrite ^/(.*)/code/(.*)$ /applicationName/code/$2 permanent; add_header 'Cache-Control' 'no-cache';
proxy_set_header Host $http_host;
proxy_set_header X-Real-IP $remote_addr;
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
}
路径倒是改了(忽略上面的
$2
,去掉第一个括号可以改成$1
),可applicationName/code
又404了。然后又加上了/applicationName/code
的location配置location /applicationName/artery/code {
#return 200 http://$SERVER_URL/applicationName/code;
rewrite ^/(.*)/code/(.*)$ /applicationName/code/$2 permanent;
#proxy_pass $CODE_URL;
#proxy_pass http://$SERVER_URL/applicationName/code/;
#proxy_pass http://127.0.0.1:8087/applicationName/code/;
add_header 'Cache-Control' 'no-cache';
proxy_set_header Host $http_host;
proxy_set_header X-Real-IP $remote_addr;
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
}
location /applicationName/code {
proxy_pass http://$SERVER_URL;
proxy_set_header Host $http_host;
proxy_set_header X-Real-IP $remote_addr;
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
}
最后,附个conf的目录结构
nginx之配置文件公用抽取的更多相关文章
- Nginx的配置文件(nginx.conf)解析和领读官网
步骤一:vi nginx.conf配置文件,参考本博文的最下面总结,自行去设置 最后nginx.conf内容为 步骤二:每次修改了nginx.conf配置文件后,都要reload下. index.ht ...
- [原]生产环境下的nginx.conf配置文件(多虚拟主机)
[原]生产环境下的nginx.conf配置文件(多虚拟主机) 2013-12-27阅读110 评论0 我的生产环境下的nginx.conf配置文件,做了虚拟主机设置的,大家可以根据需求更改,下载即可在 ...
- Nginx源码研究六:NGINX的配置文件分析
上一篇写到nginx的各个模块的配置信息的存储结构,大体描述了对配置信息的配置项生成,定制,初始化过程.这里重点研究实现定制的过程,所谓实现定制,这里指的是,nginx系统提供使用者定义nginx的配 ...
- Nginx 主配置文件参数详解
Nginx 主配置文件参数详解 Nginx 安装完毕后,会有响应的安装目录,安装目录里 nginx.conf 为 nginx 的主配置文件, ginx 主配置文件分为 4 部分,main(全局配置). ...
- Nginx的配置文件nginx.conf解析
安装openresty的nginx.conf配置文件 0.ng运行的用户和用户组 1.ng进程数,设置为CPU总核心数 2.ng错误日志 3.进程文件,有时ng启动不了,将进程文件删除即可. 4.单进 ...
- Nginx入门讲解——初步认识了解nginx.conf配置文件以及配置多个虚拟主机
本文引自网络进攻学习之用https://blog.csdn.net/weixin_38111957/article/details/81080539 一. 引言上节文章讲述了如何用信号控制Nginx服 ...
- Nginx(二)------nginx.conf 配置文件
上一篇博客我们将 nginx 安装在 /usr/local/nginx 目录下,其默认的配置文件都放在这个目录的 conf 目录下,而主配置文件 nginx.conf 也在其中,后续对 nginx 的 ...
- 通过python生成nginx模板配置文件
通过python生成nginx模板配置文件 # cat config.py #coding=utf-8 nginx_conf = ''' server {{ listen {port}; server ...
- 第四百零二节,Django+Xadmin打造上线标准的在线教育平台—生产环境部署,uwsgi安装和启动,nginx的安装与启动,uwsgi与nginx的配置文件+虚拟主机配置
第四百零二节,Django+Xadmin打造上线标准的在线教育平台—生产环境部署,uwsgi安装和启动,nginx的安装与启动,uwsgi与nginx的配置文件+虚拟主机配置 软件版本 uwsgi- ...
随机推荐
- 安装wkhtmltopdf
思路 在网上查了下前后端都可以将html生成pdf,考虑到实现效果以及效率,最后决定将转化工作在服务端使用PHP完成.本着最好不要额外安装软件的原则,搜索过后分别尝试了 TCPDF MPDF FPDF ...
- C#/VB.NET 将Html转为Excel
本文介绍通过C#和VB.NET代码展示将Html转为Excel文档的方法. dll引用 方法1 将 Spire.XLS for .NET 下载到本地,解压,安装.完成安装后,在安装路径下找到BIN文件 ...
- Golang 基础之基础语法梳理 (一)
大家好,今天将梳理出的 Go语言基础语法内容,分享给大家. 请多多指教,谢谢. 本次<Go语言基础语法内容>共分为三个章节,本文为第一章节 Golang 基础之基础语法梳理 (一) Gol ...
- 网络IO模型 非阻塞IO模型
网络IO模型 非阻塞IO模型 同步 一件事做完后再做另一件事情 异步 同时做多件事情 相对论 多线程 多进程 协程 异步的程序 宏观角度:异步 并发聊天 阻塞IO 阻塞IO的问题 一旦阻塞就不能做其他 ...
- CF1545X Codeforces Round #732
A. AquaMoon and Strange Sort 叉人题 如果数字各不相同,只需要统计每个数参与构成的逆序对总数,如果是奇数一定最终朝左,偶数朝右.无意义的数字交换对方向是没有影响的 继续考虑 ...
- 不会真有人还不会调用Excel吧?
哈喽,大家好!我是指北君. 大家有没有过这样的经历:开发某个项目,需要调用Excel控件去生成Excel文件.填充数据.改变格式等等,常常在测试环境中一切正常,但在生产环境却无法正常调用Excel,不 ...
- leedcode算法分类
- sleep 和 wait 的区别?
Sleep是休眠线程,wait是等待,sleep是thread的静态方法,wait则是object的方法. Sleep依旧持有锁,并在指定时间自动唤醒.wait则释放锁.
- 文件下载文件名包含中文时,乱码的处理方法(url编解码)
utf-8/gbk编码 "中"这个汉子的utf-8编码为:E4B8AD gbk编码为:D6D0 urlencode 经过urlencode编码后, %E4%B8%AD %D6%D0 ...
- RabbitMQ-learning
第一种模式=直连 P:生产者,也就是要发送消息的程序 C:消费者:消息的接受者,会一直等待消息到来. queue:消息队列,图中红色部分.类似一个邮箱,可以缓存消息:生产者向其中投递消息,消费者从其中 ...