您好,登錄后才能下訂單哦!
這篇文章將為大家詳細(xì)講解有關(guān)Nginx虛擬主機(jī)中怎么配置雙主機(jī),文章內(nèi)容質(zhì)量較高,因此小編分享給大家做個參考,希望大家閱讀完這篇文章后對相關(guān)知識有一定的了解。
Nginx上做兩個虛擬主機(jī),一個虛擬主機(jī)用作運(yùn)行狀態(tài)查看,另一個做proxy到varnish。varnish跑在127.0.0.1:8080上。
Nginx官網(wǎng)上說是做proxying without caching,但實(shí)際觀察下來,似乎也是有cache的。實(shí)際上在同一時刻,外部來的HTTP連接數(shù)遠(yuǎn)大于proxy到varnish的連接數(shù)。
用Nginx虛擬主機(jī)的另一個考慮,也為以后訪問量進(jìn)一步增大后,可能需要增加的第二臺緩存服務(wù)器做簡單負(fù)載均衡的準(zhǔn)備。
upstream mysite.cn { server 127.0.0.1:8080 ; # server 192.168.11.1:80; 今后可能的第二臺cache } server {
***個虛擬主機(jī),用于varnish和Nginx運(yùn)行狀態(tài)監(jiān)測
listen 80; server_name cache.mysite.cn; index index.htm index.html index.php; root /web/htdocs; location / { index infov.txt; allow 192.168.0.0/16; deny all; } location /status { stub_status on; access_log off; allow 192.168.0.0/16; deny all; } } server {
第二個虛擬主機(jī),proxy到后面的varnish
listen 80;
client_max_body_size 50M;
server_name .mysite.cn;
index index.htm index.html index.php;
root /web/htdocs;
location / {
proxy_pass http://mysite.cn;
proxy_redirect off;
proxy_set_header Host $host;
proxy_set_header X-Real-IP $remote_addr;
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
client_max_body_size 50m;
client_body_buffer_size 256k;
proxy_connect_timeout 10;
proxy_send_timeout 15;
proxy_read_timeout 15;
proxy_buffer_size 4k;
proxy_buffers 4 32k;
proxy_busy_buffers_size 64k;
proxy_temp_file_write_size 64k;
}
#location ~ .*\.php?$
#{
# include conf/fcgi.conf;
# fastcgi_pass 127.0.0.1:10080;
# fastcgi_index index.php;
#}
}
關(guān)于Nginx虛擬主機(jī)中怎么配置雙主機(jī)就分享到這里了,希望以上內(nèi)容可以對大家有一定的幫助,可以學(xué)到更多知識。如果覺得文章不錯,可以把它分享出去讓更多的人看到。
免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場,如果涉及侵權(quán)請聯(lián)系站長郵箱:is@yisu.com進(jìn)行舉報,并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。