国产片侵犯亲女视频播放_亚洲精品二区_在线免费国产视频_欧美精品一区二区三区在线_少妇久久久_在线观看av不卡

服務(wù)器之家:專注于服務(wù)器技術(shù)及軟件下載分享
分類導(dǎo)航

云服務(wù)器|WEB服務(wù)器|FTP服務(wù)器|郵件服務(wù)器|虛擬主機(jī)|服務(wù)器安全|DNS服務(wù)器|服務(wù)器知識|Nginx|IIS|Tomcat|

服務(wù)器之家 - 服務(wù)器技術(shù) - Nginx - 詳解Ngigx+Tomcat配置動靜分離,負(fù)載均衡

詳解Ngigx+Tomcat配置動靜分離,負(fù)載均衡

2019-11-16 17:50貝影~ぃょ戀 Nginx

本篇文章主要介紹了Ngigx+Tomcat配置動靜分離,負(fù)載均衡,具有一定的參考價值,有需要的可以了解一下。

由于公司使用過Ngnix,對于剛接觸Nginx來說,感覺有些好奇,于是研究了下。

本人在windows下使用的版本是nginx-1.8.1:

1. 啟動Ngnix

雙擊nginx-1.8.1文件夾中nginx.exe,當(dāng)任務(wù)管理器中存在兩個nginx進(jìn)程時,則說明啟動成功!

2. Ngnix常用命令

  • nginx -s stop 強(qiáng)制關(guān)閉
  • nginx -s quit 安全關(guān)閉
  • nginx -s reload 改變配置文件的時候,重啟nginx工作進(jìn)程,來時配置文件生效 
  •  nginx -s reopen 打開日志文件

3. Nginx配置

下面配置綜合了網(wǎng)上的資料,記下,防止自己忘記。

?
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
#Nginx所用用戶和組
#user nobody;
#工作的子進(jìn)程數(shù)量(通常等于CPU數(shù)量或者2倍于CPU)
worker_processes 1;
 
#錯誤日志存放路徑
#error_log logs/error.log;
#error_log logs/error.log notice;
#error_log logs/error.log info;
 
#指定pid存放文件
#pid    logs/nginx.pid;
 
 
events {
  #使用網(wǎng)絡(luò)IO模型linux建議epoll,F(xiàn)reeBSD建議采用kqueue
  #use epoll;
 
  #使用epoll模型提高性能 win下不需要
  #use epoll;
  #允許最大連接數(shù)
  worker_connections 1024;
}
 
 
http {
  #擴(kuò)展名與文件類型映射表
  include    mime.types;
  #默認(rèn)類型
  default_type application/octet-stream;
 
  #定義日志格式
  #log_format main '$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;
 
  # 啟用內(nèi)核復(fù)制模式,應(yīng)該保持開啟達(dá)到最快IO效率
  sendfile    on;
  #tcp_nopush   on;
 
  #keepalive_timeout 0;
  # HTTP1.1支持持久連接alive
  # 降低每個連接的alive時間可在一定程度上提高可響應(yīng)連接數(shù)量,所以一般可適當(dāng)降低此值
  keepalive_timeout 65;
 
  # 啟動gzip壓縮功能設(shè)置,有效降低網(wǎng)絡(luò)流量
  gzip on;
  gzip_min_length 1k;  #最小1K
  gzip_buffers  4 16k;
  gzip_http_version 1.0;
  gzip_comp_level 2;
  gzip_types text/plain application/x-javascripttext/css application/xml;
  gzip_vary on;
  
  # 靜態(tài)文件緩存
  # 最大緩存數(shù)量,文件未使用存活期
  open_file_cache max=655350 inactive=20s;
  # 驗證緩存有效期時間間隔
  open_file_cache_valid 30s;
  # 有效期內(nèi)文件最少使用次數(shù)
  open_file_cache_min_uses 2;
  
  #xbq add
  #upstream作負(fù)載均衡,在此配置需要輪詢的服務(wù)器地址和端口號,max_fails為允許請求失敗的次數(shù),默認(rèn)為1.
  #weight為輪詢權(quán)重,根據(jù)不同的權(quán)重分配可以用來平衡服務(wù)器的訪問率。
  upstream hostname {
    server 127.0.0.1:9000 max_fails=0 weight=2;
    server 127.0.0.1:9001 max_fails=0 weight=2;
  }
 
  server {
    listen    8181;
    server_name localhost;
 
    #charset koi8-r;
    #access_log logs/host.access.log main;
 
    root /img; #在nginx-1.8.1文件夾中新建img文件夾,用于存放靜態(tài)資源
    
    location / {
      #root  html;
      #index index.html index.htm;
      #xbq add
      proxy_pass http://hostname;
      #下面三條指令允許重新定義和添加一些將被轉(zhuǎn)移到被代理服務(wù)器的請求頭部信息
      # 請求頭中Host信息
      proxy_set_header Host $host;
      # 真實的客戶端IP
      proxy_set_header X-Real-IP $remote_addr;
      # 代理路由信息,此處取IP有安全隱患
      proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
      # 真實的用戶訪問協(xié)議
      proxy_set_header X-Forwarded-Proto $scheme;
      
      # 默認(rèn)值default,
      # 后端response 302時 tomcat header中l(wèi)ocation的host是http://192.168.1.62:8080
      # 因為tomcat收到的請求是nginx發(fā)過去的, nginx發(fā)起的請求url host是http://192.168.1.62:8080
      # 設(shè)置為default后,nginx自動把響應(yīng)頭中l(wèi)ocation host部分替換成當(dāng)前用戶請求的host部分
      # 網(wǎng)上很多教程將此值設(shè)置成 off,禁用了替換,
      # 這樣用戶瀏覽器收到302后跳到http://192.168.1.62:8080,直接將后端服務(wù)器暴露給瀏覽器
      # 所以除非特殊需要,不要設(shè)置這種畫蛇添足的配置
      proxy_redirect default;
      client_max_body_size 10m;  #允許客戶端請求的最大單文件字節(jié)數(shù)
      client_body_buffer_size 128k; #緩沖區(qū)代理緩沖用戶端請求的最大字節(jié)數(shù)
      proxy_connect_timeout 90;  #nginx跟后端服務(wù)器連接超時時間
      proxy_read_timeout 90;   #連接成功后,后端服務(wù)器響應(yīng)時間
      proxy_buffer_size 4k;    #設(shè)置代理服務(wù)器(nginx)保存用戶頭信息的緩沖區(qū)大小
      proxy_buffers 6 32k;    #proxy_buffers緩沖區(qū),網(wǎng)頁平均在32k以下的話,這樣設(shè)置
      proxy_busy_buffers_size 64k;#高負(fù)荷下緩沖大小(proxy_buffers*2)
      proxy_temp_file_write_size 64k; #設(shè)定緩存文件夾大小,大于這個值,將從upstream服務(wù)器傳
      
    }
    
    #xbq add
    #配置Nginx動靜分離,定義的靜態(tài)頁面直接從/usr/nginxStaticFile(Nginx發(fā)布目錄)讀取。
    location ~\.(gif|jpg|jpeg|png|css|js|php)$ {
      
      #expires定義用戶瀏覽器緩存的時間為7天,如果靜態(tài)頁面不常更新,可以設(shè)置更長,這樣可以節(jié)省帶寬和緩解服務(wù)器的壓力  E:/staticResource;
      expires 7d;
    }
    
    #xbq add
    #啟用nginx status 監(jiān)聽頁面
    location /nginxstatus {
      stub_status on;
      access_log on;
    }
 
    #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    8000;
  #  listen    somename:8080;
  #  server_name somename alias another.alias;
 
  #  location / {
  #    root  html;
  #    index index.html index.htm;
  #  }
  #}
 
 
  # 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;
  #  }
  #}
 
}

以上就是本文的全部內(nèi)容,希望對大家的學(xué)習(xí)有所幫助,也希望大家多多支持服務(wù)器之家。

原文鏈接:http://www.cnblogs.com/xbq8080/p/6117197.html

延伸 · 閱讀

精彩推薦
主站蜘蛛池模板: 伊人网在线观看 | 亚洲日本三级 | 在线免费观看毛片 | 午夜免费福利影院 | 欧美精品一二三区 | 精品日韩 | 精品国产一区二区三区小蝌蚪 | 久久免费的视频 | 日韩精品在线观看视频 | 久久久精品国产亚洲 | 亚洲精品1 | 99精品免费视频 | 在线成人福利 | 国产中文视频 | 亚洲欧美日韩另类精品一区二区三区 | 欧美日韩一区二区三区在线观看 | 国产精品一区视频 | 国产日韩欧美在线 | 成年人精品视频 | 日韩免费视频 | 在线播放亚洲 | 黄色片视频免费看 | 国产精品69毛片高清亚洲 | 日韩精品一区二区三区在线观看视频网站 | 国产精品久久久久久久久久免费 | 国产精品一区二区无线 | 91传媒在线播放 | 久久久国产视频 | 亚洲乱码国产乱码精品精的特点 | 日韩中文字幕在线 | 成人午夜天堂 | 中文字幕在线观看日本 | 久久精品国产免费 | 人人干天天干 | 久久久亚洲综合 | 羞羞视频在线免费 | 欧美精品久久久久 | 国产乱视频 | 久久综合久久综合久久 | 中文字幕中文字幕 | 亚洲精选久久 |