tar zxvf nginx-1.2.9.tar.gz #解壓nginx
cd nginx-1.2.9 #進入目錄
./configure --prefix=/opt/soft/nginx --with-http_stub_status_module --with-http_ssl_module --with-http_realip_module #配置安裝模塊
make install #安裝
複製代碼
--prefix
:指定安裝目錄,默認的安裝目錄是/usr/local/nginx;php
--with-http_ssl_module
:安裝https服務模塊html
/opt/soft/nginx/sbin/nginx
/opt/soft/nginx/sbin/nginx -s stop # fast shutdown
/opt/soft/nginx/sbin/nginx -s quit # graceful shutdown
/opt/soft/nginx/sbin/nginx -s reload # reloading the configuration file
/opt/soft/nginx/sbin/nginx -s reopen # reopening the log files
複製代碼
設置開機自啓動:nginx
echo "/opt/soft/nginx/sbin/nginx -c /opt/soft/nginx/conf/nginx.conf" >> /etc/rc.local
複製代碼
主要配置server模塊的 listen 和 server_nameweb
server {
listen 80;
server_name test.a.com;
location / {
proxy_pass http://192.168.0.1; #反向代理到其餘站點
}
}
server {
listen 80;
server_name test.b.com;
location / {
proxy_pass http://192.168.0.2; #反向代理到其餘站點
}
}
複製代碼
注意: 配置文件下載服務器正則表達式
server {
listen 80;
server_name file.download.com;
charset utf-8;
location ~ ^/(.*)$ {
add_header Content-Disposition "attachment; filename=$1"; #設置header
alias "C:/Robot_Download/$1"; #文件的本地位置
}
}
複製代碼
server {
listen 80;
server_name localhost;
alias /data/html/index.html; #也可以使用root、location等方式指向靜態資源
}
server {
listen 81;
server_name localhost;
root /data/html/index.html; #也可以使用alias、location等方式指向靜態資源
}
複製代碼
server {
listen 100.100.100.100:80;
server_name localhost;
location / {
alias /data/html/index.html; #也可以使用alias、root等方式指向靜態資源
}
}
server {
listen 100.100.100.101:80;
server_name localhost;
location / {
alias /data/html/index.html; #也可以使用alias、root等方式指向靜態資源
}
}
複製代碼
主要配置location模塊的 proxy_pass後端
server {
listen 80;
server_name test.b.com;
location / {
proxy_pass http://192.168.0.2; #反向代理到其餘應用服務器或web服務器
}
}
複製代碼
主要配置upstream和location模塊的proxy_pass瀏覽器
upstream tomcat_server_pool{
ip_hash;
server 127.0.0.1:8090 weight=10; #設置訪問權重,權重越高越容易被訪問
server 127.0.0.1:8100 weight=10;
server 127.0.0.1:8110 weight=7;
}
server {
listen 80;
server_name test.b.com;
location / {
proxy_pass http://tomcat_server_pool; #反向代理到其餘服務器集合
}
}
複製代碼
**ip_hash:**使用ip_hash策略的負載均衡解決session問題。每一個請求按訪問ip的hash結果分配,這樣每一個訪客固定訪問一個後端服務器,可較好地解決session的問題。tomcat
location /svn/ {
root /data/ftp/;
autoindex on;
}
複製代碼
訪問127.0.0.1/svn/a.jpg
:則會進入到 /data/ftp/svn/a.jpgbash
location /svn/ {
alias /data/ftp/;
autoindex on;
}
複製代碼
訪問127.0.0.1/svn/a.jpg
:則會進入到 /data/ftp/a.jpg服務器
注意:alias和root後的url都是要加/的
location /proxy/ {
proxy_pass http://127.0.0.1/;
}
複製代碼
訪問:127.0.0.1/proxy/a.jpg
:則會請求到:http://127.0.0.1/a.jpg
location /proxy/ {
proxy_pass http://127.0.0.1;
}
複製代碼
訪問:127.0.0.1/proxy/a.jpg
:則會請求到:http://127.0.0.1/proxy/a.jpg
location = / { #表示匹配訪問根目錄
root html; #當前安裝目錄下的html,/html則表示服務器根目錄下的html
index index.html index.htm;
}
location /svn/ { #表示匹配ip:port/svn/
root /data/;
autoindex on;
}
}
location ^~ /svn/ { #表示只要含有svn/就會被匹配
root /data/;
autoindex on;
}
複製代碼
「location /xxx/」表示匹配ip:port/xxx
,需注意:
- 能匹配到 test.com/xxx/home.jpg;
- 不能匹配到 test.com/folder/xxx/home.jpg;
- 若是須要匹配到後者,應改成:
location /folder/xxx/
科普:
通常默認都有location = /(精確匹配)
,而還有一種是 location /(模糊匹配)
。
二者的區別是:模糊匹配就算匹配到也會一直匹配下去,而精確匹配不會。
例: 如上例中,把location = /
換成location /
,那麼請求 112.74.55.239/svn/
:
/
,請求的物理路徑變成了:/usr/local/nginx/html/svn/
,實際訪問的物理路徑變成了: /usr/local/nginx/html/data/svn/location ~ \.php${
rewirte "^/php/(.*)$" http://localhost:8090/$1
}
複製代碼
localhost/php/test.php
重定向到localhost:8090/test.php
。若是正則表達式(regex)匹配到了請求的URI(request URI),這個URI會被後面的replacement替換可選的flag參數以下:
proxy_set_header Host $http_host;
proxy_set_header X-Real-IP $remote_addr;
proxy_set_header REMOTE-HOST $remote_addr;
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
複製代碼
proxy_set_header X-Forwarded-Proto $scheme;
複製代碼
map $http_upgrade $connection_upgrade {
default upgrade;
'' close;
}
複製代碼