Nginx主配置參數(shù)詳解猜惋,Nginx配置網(wǎng)站

閱讀目錄

  • [1.Niginx主配置文件參數(shù)詳解]
  • [2.Nginx.conf配置文件詳細(xì)說明(附備注)]
  • [3.Nginx代理網(wǎng)站]

1.Niginx主配置文件參數(shù)詳解

a.上面博客說了在Linux中安裝nginx。博文地址為:http://www.cnblogs.com/hanyinglong/p/5102141.html

b.當(dāng)Nginx安裝完畢后,會(huì)有相應(yīng)的安裝目錄会放,安裝目錄里的nginx.confg為nginx的主配置文件,nginx主配置文件分為4部分钉凌,main(全局配置)咧最、server(主機(jī)配置)、upstream(負(fù)載均衡服務(wù)器設(shè)置)以及l(fā)ocation(URL匹配特定位置的設(shè)置),這四者的關(guān)系是:server繼承main,location繼承server,upstream既不會(huì)繼承其它設(shè)置也不會(huì)被繼承御雕。

c.Nginx是一個(gè)代理服務(wù)器矢沿,一般情況下,網(wǎng)站是不能部署在Nginx下的饮笛,比如用Java開發(fā)的JavaWeb程序咨察,我們部署在tomcat下,然后使用Nginx代理將網(wǎng)址指向tomcat即可福青。

2.Nginx.conf配置文件詳細(xì)說明(附備注)

  1 #  kencery 注釋說明Nginx文件
  2 #  時(shí)間:2016-1-19
  3 #  學(xué)習(xí)內(nèi)容摄狱,只是來自互聯(lián)網(wǎng),有版權(quán)問題請聯(lián)系我刪除无午。
  4 
  5 ########   Nginx的main(全局配置)文件
  6 #指定nginx運(yùn)行的用戶及用戶組,默認(rèn)為nobody
  7 #user  nobody;   
  8 
  9 #開啟的線程數(shù)媒役,一般跟邏輯CPU核數(shù)一致
 10 worker_processes  1;   
 11 
 12 #定位全局錯(cuò)誤日志文件,級別以notice顯示宪迟,還有debug,info,warn,error,crit模式酣衷,debug輸出最多,crir輸出最少次泽,根據(jù)實(shí)際環(huán)境而定
 13 #error_log  logs/error.log;
 14 #error_log  logs/error.log  notice;
 15 #error_log  logs/error.log  info;
 16 
 17 #指定進(jìn)程id的存儲(chǔ)文件位置
 18 #pid        logs/nginx.pid;
 19 
 20 #指定一個(gè)nginx進(jìn)程打開的最多文件描述符數(shù)目穿仪,受系統(tǒng)進(jìn)程的最大打開文件數(shù)量限制
 21 #worker_rlimit_nofile 65535
 22 
 23 events {
 24     #設(shè)置工作模式為epoll,除此之外還有select,poll,kqueue,rtsig和/dev/poll模式
 25     #use epoll;
 26     
 27     #定義每個(gè)進(jìn)程的最大連接數(shù),受系統(tǒng)進(jìn)程的最大打開文件數(shù)量限制席爽。
 28     worker_connections  1024;
 29 }
 30 
 31 #######Nginx的Http服務(wù)器配置,Gzip配置
 32 http {
 33     #主模塊指令,實(shí)現(xiàn)對配置文件所包含的文件的設(shè)定啊片,可以減少主配置文件的復(fù)雜度只锻,DNS主配置文件中的zonerfc1912,acl基本上都是用include語句。
 34     include       mime.types;
 35     
 36     #核心模塊指令紫谷,智力默認(rèn)設(shè)置為二進(jìn)制流齐饮,也就是當(dāng)文件類型未定義時(shí)使用這種方式
 37     default_type  application/octet-stream;
 38 
 39     #下面代碼為日志格式的設(shè)定,main為日志格式的名稱笤昨,可自行設(shè)置祖驱,后面引用
 40     #log_format  main  '$remote_addr - $remote_user [$time_local] "$request" '
 41     #                  '$status $body_bytes_sent "$http_referer" '
 42     #                  '"$http_user_agent" "$http_x_forwarded_for"';
 43 
 44     #引用日志main
 45     #access_log  logs/access.log  main;
 46 
 47     #設(shè)置允許客戶端請求的最大的單個(gè)文件字節(jié)數(shù)
 48     #client_max_body_size 20M;
 49     #指定來自客戶端請求頭的headebuffer大小
 50     #client_header_buffer_size  32k;
 51     #指定連接請求試圖寫入緩存文件的目錄路徑
 52     #client_body_temp_path /dev/shm/client_body_temp;
 53     #指定客戶端請求中較大的消息頭的緩存最大數(shù)量和大小,目前設(shè)置為4個(gè)32KB
 54     #large client_header_buffers 4 32k;
 55     
 56     #開啟高效文件傳輸模式
 57     sendfile        on;
 58     #開啟防止網(wǎng)絡(luò)阻塞
 59     #tcp_nopush     on;
 60     #開啟防止網(wǎng)絡(luò)阻塞
 61     #tcp_nodelay    on;
 62     
 63     #設(shè)置客戶端連接保存活動(dòng)的超時(shí)時(shí)間
 64     #keepalive_timeout  0;
 65     keepalive_timeout  65;
 66 
 67     #設(shè)置客戶端請求讀取超時(shí)時(shí)間
 68     #client_header_timeout 10;
 69     #設(shè)置客戶端請求主體讀取超時(shí)時(shí)間
 70     #client_body_timeout 10;
 71     #用于設(shè)置相應(yīng)客戶端的超時(shí)時(shí)間
 72     #send_timeout 
 73     
 74     ####HttpGZip模塊配置
 75     #httpGzip modules
 76     #開啟gzip壓縮
 77     #gzip  on;
 78     #設(shè)置允許壓縮的頁面最小字節(jié)數(shù)
 79     #gzip_min_length 1k;
 80     #申請4個(gè)單位為16K的內(nèi)存作為壓縮結(jié)果流緩存
 81     #gzip_buffers 4 16k;
 82     #設(shè)置識別http協(xié)議的版本瞒窒,默認(rèn)為1.1
 83     #gzip_http_version 1.1;
 84     #指定gzip壓縮比捺僻,1-9數(shù)字越小,壓縮比越小根竿,速度越快
 85     #gzip_comp_level 2;
 86     #指定壓縮的類型
 87     #gzip_types text/plain application/x-javascript text/css application/xml;
 88     #讓前端的緩存服務(wù)器進(jìn)過gzip壓縮的頁面
 89     #gzip_vary on;  
 90     
 91     #########Nginx的server虛擬主機(jī)配置
 92     server {
 93         #監(jiān)聽端口為 80
 94         listen       80;
 95         
 96         #設(shè)置主機(jī)域名
 97         server_name  localhost;
 98         
 99         #設(shè)置訪問的語言編碼
100         #charset koi8-r;
101 
102         #設(shè)置虛擬主機(jī)訪問日志的存放路徑及日志的格式為main
103         #access_log  logs/host.access.log  main;
104 
105         #設(shè)置虛擬主機(jī)的基本信息
106         location / {
107             #設(shè)置虛擬主機(jī)的網(wǎng)站根目錄
108             root   html;
109             
110             #設(shè)置虛擬主機(jī)默認(rèn)訪問的網(wǎng)頁
111             index  index.html index.htm;
112         }
113 
114         #error_page  404              /404.html;
115 
116         # redirect server error pages to the static page /50x.html
117         #
118         error_page   500 502 503 504  /50x.html;
119         location = /50x.html {
120             root   html;
121         }
122 
123         # proxy the PHP scripts to Apache listening on 127.0.0.1:80
124         #
125         #location ~ \.php$ {
126         #    proxy_pass   http://127.0.0.1;
127         #}
128 
129         # pass the PHP scripts to FastCGI server listening on 127.0.0.1:9000
130         #
131         #location ~ \.php$ {
132         #    root           html;
133         #    fastcgi_pass   127.0.0.1:9000;
134         #    fastcgi_index  index.php;
135         #    fastcgi_param  SCRIPT_FILENAME  /scripts$fastcgi_script_name;
136         #    include        fastcgi_params;
137         #}
138 
139         # deny access to .htaccess files, if Apache's document root
140         # concurs with nginx's one
141         #
142         #location ~ /\.ht {
143         #    deny  all;
144         #}
145     }
146 
147 
148     # another virtual host using mix of IP-, name-, and port-based configuration
149     #
150     #server {
151     #    listen       8000;
152     #    listen       somename:8080;
153     #    server_name  somename  alias  another.alias;
154 
155     #    location / {
156     #        root   html;
157     #        index  index.html index.htm;
158     #    }
159     #}
160 
161 
162     # HTTPS server
163     #
164     #server {
165     #    listen       443 ssl;
166     #    server_name  localhost;
167 
168     #    ssl_certificate      cert.pem;
169     #    ssl_certificate_key  cert.key;
170 
171     #    ssl_session_cache    shared:SSL:1m;
172     #    ssl_session_timeout  5m;
173 
174     #    ssl_ciphers  HIGH:!aNULL:!MD5;
175     #    ssl_prefer_server_ciphers  on;
176 
177     #    location / {
178     #        root   html;
179     #        index  index.html index.htm;
180     #    }
181     #}
182 
183 }

3.Nginx代理網(wǎng)站

a.我在tomcat下部署了一個(gè)javaweb項(xiàng)目陵像,tomcat安裝的服務(wù)器IP為:192.168.37.136,部署的項(xiàng)目在tomcat下的訪問地址為:http://192.168.37.136:8080/lywh/

b.我在IP為192.168.37.133的服務(wù)器下面安裝成功了Nginx寇壳。

c.那怎么樣將tomcat下部署的網(wǎng)站使用Nginx代理呢醒颖?,修改Nginx的配置文件壳炎,修改命令:vim /usr/local/nginx/conf/nginx.conf

1 #user  nobody;
  2 worker_processes  1;
  3 #error_log  logs/error.log;
  4 #error_log  logs/error.log  notice;
  5 #error_log  logs/error.log  info;
  7 #pid        logs/nginx.pid;
 10 events {
 11     worker_connections  1024;
 12 }
 15 http {
 16     include       mime.types;
 17     default_type  application/octet-stream;
 18 
 19     #log_format  main  '$remote_addr - $remote_user [$time_local] "$request" '
 20     #                  '$status $body_bytes_sent "$http_referer" '
 21     #                  '"$http_user_agent" "$http_x_forwarded_for"';
 22 
 23     #access_log  logs/access.log  main;
 24 
 25     sendfile        on;
 26     #tcp_nopush     on;
 27 
 28     #keepalive_timeout  0;
 29     keepalive_timeout  65;
 30 
 31     #gzip  on;
 32     
 33     #配置tomcat的IP地址和訪問端口
 34     upstream gw {
 35         server 192.168.37.136:8080 weight=1;    
 36     }
 37     server {
 38         listen       80;
 39         server_name  localhost;
 40 
 41         #charset koi8-r;
 42 
 43         #access_log  logs/host.access.log  main;
 44 
 45         location / {
 46             root   html;
 47             index  index.html index.htm;
 48         }
 49     #Nginx代理配置
 50     location /lywh {
 51         proxy_pass http://gw/lywh;
 52     }
 53     location /sapi {
 54         proxy_pass http://gw/shopappapi;
 55     }
 56     location /cas{
 57         proxy_pass http://gw/cas-server-webapp-4.0.0/login;
 58     }
 59     location /doc{
 60         proxy_pass http://gw/docs;
 61     }
 62 
 63     #error_page  404              /404.html;
 64 
 65         # redirect server error pages to the static page /50x.html
 66         #
 67         error_page   500 502 503 504  /50x.html;
 68         location = /50x.html {
 69             root   html;
 70         }
 71 
 72         # proxy the PHP scripts to Apache listening on 127.0.0.1:80
 73         #
 74         #location ~ \.php$ {
 75         #    proxy_pass   http://127.0.0.1;
 76         #}
 77 
 78         # pass the PHP scripts to FastCGI server listening on 127.0.0.1:9000
 79         #
 80         #location ~ \.php$ {
 81         #    root           html;
 82         #    fastcgi_pass   127.0.0.1:9000;
 83         #    fastcgi_index  index.php;
 84         #    fastcgi_param  SCRIPT_FILENAME  /scripts$fastcgi_script_name;
 85         #    include        fastcgi_params;
 86         #}
 87 
 88         # deny access to .htaccess files, if Apache's document root
 89         # concurs with nginx's one
 90         #
 91         #location ~ /\.ht {
 92         #    deny  all;
 93         #}
 94     }
 95 
 96 
 97     # another virtual host using mix of IP-, name-, and port-based configuration
 98     #
 99     #server {
100     #    listen       8000;
101     #    listen       somename:8080;
102     #    server_name  somename  alias  another.alias;
103 
104     #    location / {
105     #        root   html;
106     #        index  index.html index.htm;
107     #    }
108     #}
109 
110 
111     # HTTPS server
112     #
113     #server {
114     #    listen       443 ssl;
115     #    server_name  localhost;
116 
117     #    ssl_certificate      cert.pem;
118     #    ssl_certificate_key  cert.key;
119 
120     #    ssl_session_cache    shared:SSL:1m;
121     #    ssl_session_timeout  5m;
122 
123     #    ssl_ciphers  HIGH:!aNULL:!MD5;
124     #    ssl_prefer_server_ciphers  on;
125 
126     #    location / {
127     #        root   html;
128     #        index  index.html index.htm;
129     #    }
130     #}
131 
132 }

d.當(dāng)配置完Nginx.conf之后泞歉,關(guān)閉文件,執(zhí)行命令檢查配置的文件是否有問題匿辩,如果如圖所示則說明沒有問題腰耙,否則需要檢查配置是否出現(xiàn)問題

檢查配置.png

e.檢查如果返回ok,則說明修改文件沒有出現(xiàn)任何錯(cuò)誤铲球,這時(shí)候重啟Nginx挺庞,命令為: /usr/local/nginx/sbin/nginx -s reload

f.最后訪問代理后的網(wǎng)站,http://192.168.37.133/lywh稼病,如圖所示:則說明已經(jīng)代理訪問:

訪問代理.png

原文地址:https://www.cnblogs.com/hanyinglong/archive/2016/02/04/5141504.html

最后編輯于
?著作權(quán)歸作者所有,轉(zhuǎn)載或內(nèi)容合作請聯(lián)系作者
  • 序言:七十年代末选侨,一起剝皮案震驚了整個(gè)濱河市,隨后出現(xiàn)的幾起案子然走,更是在濱河造成了極大的恐慌援制,老刑警劉巖,帶你破解...
    沈念sama閱讀 218,122評論 6 505
  • 序言:濱河連續(xù)發(fā)生了三起死亡事件芍瑞,死亡現(xiàn)場離奇詭異晨仑,居然都是意外死亡,警方通過查閱死者的電腦和手機(jī),發(fā)現(xiàn)死者居然都...
    沈念sama閱讀 93,070評論 3 395
  • 文/潘曉璐 我一進(jìn)店門洪己,熙熙樓的掌柜王于貴愁眉苦臉地迎上來妥凳,“玉大人,你說我怎么就攤上這事码泛』猓” “怎么了?”我有些...
    開封第一講書人閱讀 164,491評論 0 354
  • 文/不壞的土叔 我叫張陵噪珊,是天一觀的道長。 經(jīng)常有香客問我齐莲,道長痢站,這世上最難降的妖魔是什么? 我笑而不...
    開封第一講書人閱讀 58,636評論 1 293
  • 正文 為了忘掉前任选酗,我火速辦了婚禮阵难,結(jié)果婚禮上,老公的妹妹穿的比我還像新娘芒填。我一直安慰自己呜叫,他們只是感情好,可當(dāng)我...
    茶點(diǎn)故事閱讀 67,676評論 6 392
  • 文/花漫 我一把揭開白布殿衰。 她就那樣靜靜地躺著朱庆,像睡著了一般。 火紅的嫁衣襯著肌膚如雪闷祥。 梳的紋絲不亂的頭發(fā)上娱颊,一...
    開封第一講書人閱讀 51,541評論 1 305
  • 那天,我揣著相機(jī)與錄音凯砍,去河邊找鬼箱硕。 笑死,一個(gè)胖子當(dāng)著我的面吹牛悟衩,可吹牛的內(nèi)容都是我干的反症。 我是一名探鬼主播,決...
    沈念sama閱讀 40,292評論 3 418
  • 文/蒼蘭香墨 我猛地睜開眼缓溅,長吁一口氣:“原來是場噩夢啊……” “哼洒沦!你這毒婦竟也來了?” 一聲冷哼從身側(cè)響起钳榨,我...
    開封第一講書人閱讀 39,211評論 0 276
  • 序言:老撾萬榮一對情侶失蹤舰罚,失蹤者是張志新(化名)和其女友劉穎,沒想到半個(gè)月后薛耻,有當(dāng)?shù)厝嗽跇淞掷锇l(fā)現(xiàn)了一具尸體营罢,經(jīng)...
    沈念sama閱讀 45,655評論 1 314
  • 正文 獨(dú)居荒郊野嶺守林人離奇死亡,尸身上長有42處帶血的膿包…… 初始之章·張勛 以下內(nèi)容為張勛視角 年9月15日...
    茶點(diǎn)故事閱讀 37,846評論 3 336
  • 正文 我和宋清朗相戀三年,在試婚紗的時(shí)候發(fā)現(xiàn)自己被綠了饲漾。 大學(xué)時(shí)的朋友給我發(fā)了我未婚夫和他白月光在一起吃飯的照片蝙搔。...
    茶點(diǎn)故事閱讀 39,965評論 1 348
  • 序言:一個(gè)原本活蹦亂跳的男人離奇死亡,死狀恐怖考传,靈堂內(nèi)的尸體忽然破棺而出吃型,到底是詐尸還是另有隱情,我是刑警寧澤僚楞,帶...
    沈念sama閱讀 35,684評論 5 347
  • 正文 年R本政府宣布勤晚,位于F島的核電站,受9級特大地震影響泉褐,放射性物質(zhì)發(fā)生泄漏赐写。R本人自食惡果不足惜,卻給世界環(huán)境...
    茶點(diǎn)故事閱讀 41,295評論 3 329
  • 文/蒙蒙 一膜赃、第九天 我趴在偏房一處隱蔽的房頂上張望挺邀。 院中可真熱鬧,春花似錦跳座、人聲如沸端铛。這莊子的主人今日做“春日...
    開封第一講書人閱讀 31,894評論 0 22
  • 文/蒼蘭香墨 我抬頭看了看天上的太陽禾蚕。三九已至,卻和暖如春咪橙,著一層夾襖步出監(jiān)牢的瞬間夕膀,已是汗流浹背。 一陣腳步聲響...
    開封第一講書人閱讀 33,012評論 1 269
  • 我被黑心中介騙來泰國打工美侦, 沒想到剛下飛機(jī)就差點(diǎn)兒被人妖公主榨干…… 1. 我叫王不留产舞,地道東北人。 一個(gè)月前我還...
    沈念sama閱讀 48,126評論 3 370
  • 正文 我出身青樓菠剩,卻偏偏與公主長得像易猫,于是被迫代替她去往敵國和親。 傳聞我的和親對象是個(gè)殘疾皇子具壮,可洞房花燭夜當(dāng)晚...
    茶點(diǎn)故事閱讀 44,914評論 2 355

推薦閱讀更多精彩內(nèi)容