真实的国产乱ⅩXXX66竹夫人,五月香六月婷婷激情综合,亚洲日本VA一区二区三区,亚洲精品一区二区三区麻豆

成都創(chuàng)新互聯(lián)網(wǎng)站制作重慶分公司

怎么讓多端口網(wǎng)站用一個Nginx進(jìn)行反向代理

本篇內(nèi)容介紹了“怎么讓多端口網(wǎng)站用一個Nginx進(jìn)行反向代理”的有關(guān)知識,在實際案例的操作過程中,不少人都會遇到這樣的困境,接下來就讓小編帶領(lǐng)大家學(xué)習(xí)一下如何處理這些情況吧!希望大家仔細(xì)閱讀,能夠?qū)W有所成!

創(chuàng)新互聯(lián)公司網(wǎng)絡(luò)公司擁有十多年的成都網(wǎng)站開發(fā)建設(shè)經(jīng)驗,千余家客戶的共同信賴。提供網(wǎng)站設(shè)計、成都網(wǎng)站設(shè)計、網(wǎng)站開發(fā)、網(wǎng)站定制、賣鏈接、建網(wǎng)站、網(wǎng)站搭建、成都響應(yīng)式網(wǎng)站建設(shè)公司、網(wǎng)頁設(shè)計師打造企業(yè)風(fēng)格,提供周到的售前咨詢和貼心的售后服務(wù)

一:用nginx做反向代理

為了解決這兩個問題,自然第一反應(yīng)想到的就是使用反向代理,我的理想構(gòu)思下應(yīng)該是下圖這樣的。

怎么讓多端口網(wǎng)站用一個Nginx進(jìn)行反向代理

既用戶所有的請求都經(jīng)過nginx,讓nginx來判斷當(dāng)前url需要跳轉(zhuǎn)到哪一個后端代理上,比較好的策略應(yīng)該是讓nginx來判斷當(dāng)前的host是什么來決定跳轉(zhuǎn)到后端的哪一個webserver上,比如a.mip.com  就跳轉(zhuǎn)到apollo,j.mip.com 就跳轉(zhuǎn)到j(luò)enkins.  以此類推,這樣就可以完美解決了,是吧?在nginx中你完全可以使用rewrite模塊下if指令來進(jìn)行判斷。

二:使用if指令

這里要提一下,nginx比較原始化,如果需使用第三方module,你還需要重新編譯nginx,用起來很麻煩,所以這里干脆使用OpenResty,它擴(kuò)展了nginx,并且集成了很多成熟的lua模塊,自行下載最新的1.15.8,安裝方式和nginx一模一樣。

怎么讓多端口網(wǎng)站用一個Nginx進(jìn)行反向代理

默認(rèn)是安裝到/usr/local/目錄下,當(dāng)你看到有一個openresty目錄表示你安裝成功。

[root@localhost local]# ls bin  etc  games  include  lib  lib64  libexec  openresty  sbin  share  src [root@localhost local]# pwd /usr/local

接下來你可以使用 nginx -v 來看一下openresty版本號啥的。

[root@localhost sbin]# pwd /usr/local/openresty/nginx/sbin [root@localhost sbin]# [root@localhost sbin]# ./nginx -v nginx version: openresty/1.15.8.1

為了方便,我就直接使用nginx開啟三個server:

192.168.23.129:80   nginx上開啟的第一個網(wǎng)站,就是proxy了。

192.168.23.129:8001 nginx上開啟的第二個網(wǎng)站,模擬apollo。

192.168.23.129:8002 nginx上開啟的第三個網(wǎng)站,模擬jenkins。

1. apollo的模擬

server {         listen       8001;         server_name  somename  alias  another.alias;         location / {             root   html;             index  apollo.html;         }     }

8001端口網(wǎng)站的默認(rèn)頁是apollo.html,這個apollo.html所在路徑就是在nginx下的html目錄,如下所示。

[root@localhost html]# pwd /usr/local/openresty/nginx/html [root@localhost html]# ls 50x.html  apollo.html  index.html  jenkins.html

2. jenkins的模擬

server {        listen       8002;        server_name  somename  alias  another.alias;        location / {            root   html;            index  jenkins.html;        }    }

jenkins.html的文件所在路徑如上所示哈。不再贅述。

3. proxy的模擬

server {         listen       80;         server_name  localhost;          location / {             if ($host = "a.mip.com") {                proxy_pass http://localhost:8001;            }             if ($host = "j.mip.com") {                proxy_pass http://localhost:8002;            }     }

可以看到,只需要使用rewrite模塊下的if條件語句,通過$host系統(tǒng)變量判斷當(dāng)前的url中的host的值跳轉(zhuǎn)到相應(yīng)的網(wǎng)站。

4. host映射

好了,接下來只需要將 a.mip.com 和 j.mip.com  映射到nginx的ip地址192.168.23.129即可。因為這些域名方便記憶而不是真實存在的。

192.168.23.129 a.mip.com 192.168.23.129 j.mip.com

怎么讓多端口網(wǎng)站用一個Nginx進(jìn)行反向代理

5. 啟動nginx

[root@localhost sbin]# ./nginx [root@localhost sbin]# [root@localhost sbin]# [root@localhost sbin]# netstat -tlnp Active Internet connections (only servers) Proto Recv-Q Send-Q Local Address           Foreign Address         State       PID/Program name tcp        0      0 0.0.0.0:8001            0.0.0.0:*               LISTEN      3802/nginx: master tcp        0      0 0.0.0.0:8002            0.0.0.0:*               LISTEN      3802/nginx: master tcp        0      0 0.0.0.0:80              0.0.0.0:*               LISTEN      3802/nginx: master tcp        0      0 0.0.0.0:22              0.0.0.0:*               LISTEN      1172/sshd tcp        0      0 127.0.0.1:25            0.0.0.0:*               LISTEN      1724/master tcp6       0      0 :::22                   :::*                    LISTEN      1172/sshd tcp6       0      0 ::1:25                  :::*                    LISTEN      1724/master

通過上圖可以看到,80,8001,8002 端口都已經(jīng)開啟了,接下來大家可以到瀏覽器去驗證一下了。

怎么讓多端口網(wǎng)站用一個Nginx進(jìn)行反向代理

以下是全部的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  '$host ----> $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;      server {         listen       80;         server_name  localhost;          #charset koi8-r;          #access_log  logs/host.access.log  main;      # location = /get {         #     set_unescape_uri $key $arg_key;  # this requires ngx_set_misc         #     redis2_query get $key;         #     redis2_pass 10.105.13.174:6379;         # }          location / {             if ($host = "a.mip.com") {                proxy_pass http://localhost:8001;            }             if ($host = "j.mip.com") {                proxy_pass http://localhost:8002;            }             root   html;            index  index.html index.htm;          }          #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;         #}     }       # another virtual host using mix of IP-, name-, and port-based configuration     #     server {         listen       8001;         server_name  somename  alias  another.alias;         location / {             root   html;             index  apollo.html;         }     }      server {         listen       8002;         server_name  somename  alias  another.alias;         location / {             root   html;             index  jenkins.html;         }     }      # HTTPS server     #     #server {     #    listen       443 ssl;     #    server_name  localhost;      #    ssl_certificate      cert.pem;     #    ssl_certificate_key  cert.key;      #    ssl_session_cache    shared:SSL:1m;     #    ssl_session_timeout  5m;      #    ssl_ciphers  HIGH:!aNULL:!MD5;     #    ssl_prefer_server_ciphers  on;      #    location / {     #        root   html;     #        index  index.html index.htm;     #    }     #}  }

“怎么讓多端口網(wǎng)站用一個Nginx進(jìn)行反向代理”的內(nèi)容就介紹到這里了,感謝大家的閱讀。如果想了解更多行業(yè)相關(guān)的知識可以關(guān)注創(chuàng)新互聯(lián)網(wǎng)站,小編將為大家輸出更多高質(zhì)量的實用文章!


分享題目:怎么讓多端口網(wǎng)站用一個Nginx進(jìn)行反向代理
本文來源:http://weahome.cn/article/jpsgcc.html

其他資訊

在線咨詢

微信咨詢

電話咨詢

028-86922220(工作日)

18980820575(7×24)

提交需求

返回頂部