老熟女激烈的高潮_日韩一级黄色录像_亚洲1区2区3区视频_精品少妇一区二区三区在线播放_国产欧美日产久久_午夜福利精品导航凹凸

重慶分公司,新征程啟航

為企業提供網站建設、域名注冊、服務器等服務

nginx+tomcat單個域名及多個域名配置教程-創新互聯

項目開發接近尾聲,開始著手在生產環境部署項目,開發階段部署項目都沒用nginx。項目是采用SOA架構,多系統開發,主要包括服務系統、中臺系統、后臺系統、金融系統、接口系統、調度系統、報表系統等。這類分布式的系統,一般也都會用到nginx來做負載均衡。

創新互聯建站主要從事成都網站制作、網站建設、外貿網站建設、網頁設計、企業做網站、公司建網站等業務。立足成都服務白山,10多年網站建設經驗,價格優惠、服務專業,歡迎來電咨詢建站服務:028-86922220

從公司剛成立就進來,趕鴨子上架來做架構師,負責公司的所有研發事情,搭建公司的整個技術架構,起初的所有核心業務代碼基本都由自己親自把關來進行編碼。系統也從最初的只有一個pc端,發展到如今pc中臺、后臺、android端3個app、iOS端3個app,產品越做越多,親自負責招聘面試、培訓。之前很多時候都有過無助和苦惱,因為負責公司整個架構,又要負責核心業務的編碼,技術難點的攻克,新員工的招聘及培訓,現在團隊已經都發展到16個人,而且這全是研發人員。

回想這一路,覺得之前看似爬不過去的山也不過如此,也許這就是成長吧,成長總是會伴隨些許汗水與淚水吧。由于是負責團隊的所有事情,所以數據庫的維護、遷移數據、建索引等性能優化,項目部署等所有事情必須得一肩挑,不要問我為什么公司沒有DBA?為什么沒有運維?我真的只能給你一個眼神,讓你慢慢去體會。

話不多說,直接開始技術干貨分享。

nginx做負載均衡的優勢網上有很多介紹資料,這里我不再多做介紹。因為有很多系統要部署,涉及到域名、二級域名、多個域名等的部署。在實際的部署由于對nginx的不夠熟悉,遇到過很多坑,其中這種多域名的配置,xxxx.com轉發到www.xxxx.com、訪問域名轉發到tomcat里的項目等,現在先總結一部坑的解決辦法。

如將xxxx.com這個域名指向8082端口里的tomcat項目,在做這個介紹前先講個插曲,如訪問xxxx.com需轉向到www.xxxx.com,這一點很多人都會忽略。

現在如果要部署中臺、后臺、金融系統,找到nginx/conf/nginx.conf,修改配置:

upstream web{
  server localhost:8082;
}
upstream admin{
  server localhost:8083;
}
upstream finance{
  server localhost:8084;
}
server {
  listen    80;
  server_name finance.xxxx.com;
  #charset koi8-r;
  #access_log logs/host.access.log main;
  location / {
    proxy_pass http://finance;
    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;
  }
  #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    80;
  server_name www.xxx.com;
  #charset koi8-r;
  #access_log logs/host.access.log main;
  location / {
    proxy_pass http://web;
    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;      
  }
  #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;
  }
  # proxy the PHP scripts to Apache listening on 127.0.0.1:80
  #
  #location ~ \.php$ {
  #  proxy_pass  http://127.0.0.1;
  #}
  # pass the PHP scripts to FastCGI server listening on 127.0.0.1:9000
  #
  #location ~ \.php$ {
  #  root      html;
  #  fastcgi_pass  127.0.0.1:9000;
  #  fastcgi_index index.php;
  #  fastcgi_param SCRIPT_FILENAME /scripts$fastcgi_script_name;
  #  include    fastcgi_params;
  #}
  # deny access to .htaccess files, if Apache's document root
  # concurs with nginx's one
  #
  #location ~ /\.ht {
  #  deny all;
  #}
}
server {
  server_name xxxx.com;
  rewrite ^(.*) http://www.xxxx.com$1 permanent;
}
server {
  listen    80;
  server_name admin.xxxx.com;
  #charset koi8-r;
  #access_log logs/host.access.log main;
  location / {
    proxy_pass http://admin;
    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;      
  }
  #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;
  }
  # proxy the PHP scripts to Apache listening on 127.0.0.1:80
  #
  #location ~ \.php$ {
  #  proxy_pass  http://127.0.0.1;
  #}
  # pass the PHP scripts to FastCGI server listening on 127.0.0.1:9000
  #
  #location ~ \.php$ {
  #  root      html;
  #  fastcgi_pass  127.0.0.1:9000;
  #  fastcgi_index index.php;
  #  fastcgi_param SCRIPT_FILENAME /scripts$fastcgi_script_name;
  #  include    fastcgi_params;
  #}
  # deny access to .htaccess files, if Apache's document root
  # concurs with nginx's one
  #
  #location ~ /\.ht {
  #  deny all;
  #}
}

新聞標題:nginx+tomcat單個域名及多個域名配置教程-創新互聯
文章位置:http://www.xueling.net.cn/article/cocdjo.html

其他資訊

在線咨詢
服務熱線
服務熱線:028-86922220
TOP
主站蜘蛛池模板: 永久免费a片在线观看全网站 | 国产三级农村妇女做受 | 欧美大片一区二区 | 国产偷录视频叫床高潮 | 午夜香蕉成视频人网站 | 免费黄色成人 | 久久青青草原一区二区 | 东北毛片 | 日韩一二三区视频 | 欧美草比| 亚洲一区二区三区香蕉 | 国产午夜福利精品一区二区三区 | 精品久久视频 | 精品国产一区二区三区高潮视 | 亚洲国产中文字幕在线观看 | 久久久久久久国产毛片 | 国产传媒果冻天美传媒 | 日韩96| 蜜桃91丨九色丨蝌蚪91桃色 | 精品国产精品国产自在久国产 | 日日碰夜夜操 | 91视视频在线观看入口直接观看 | 久久久久成人精品无码 | 免费夜里18款禁用b站软粉色 | av伦理天堂 | 日本成年人免费网站 | 四虎影视永久在线观看 | 91av在线视频播放 | 少妇av射精精品蜜桃专区 | 99久久无码一区人妻A片孕妇 | 男男高肉H视频无码网址 | 麻豆资源网 | 日韩处女网站 | 久久久噜噜噜久久熟女色 | 国产一级免费 | 顶级丰满少妇自慰到喷水 | 黄色小说视频网站 | 久青草国产97香蕉在线视频 | 91精品国产网站 | 一级毛片在线免费观看视频 | 亚洲Av无码一区二区三区在线观看 |