nginx學習之反向代理
阿新 • • 發佈:2018-11-21
反向代理是指以代理伺服器來接受internet上的連線請求,然後將請求轉發給內部網路上的伺服器,並將從伺服器上得到的結果返回給internet上請求連線的客戶端,此時代理伺服器對外就表現為一個反向代理伺服器。
使用nginx反向代理主要是分發使用者請求,將使用者請求分發到合適的伺服器上,使用同一域名訪問不同系統。結構如下:下載nginx穩定版,官網下載。 下載解壓如下:
開啟CMD,輸入 start nginx 啟動nginx後,網頁輸入localhost出現 Welcome to nginx,nginx啟動成功。
配置nginx的配置檔案(conf/nginx.conf)(簡單使用靜態檔案)
#user somebody;
#啟動程序,通常設定成和cpu的數量相等
worker_processes 1;
#全域性錯誤日誌
#error_log logs/error.log;
#error_log logs/error.log notice;
#error_log logs/error.log info;
#PID檔案,記錄當前啟動的nginx的程序ID
#pid logs/nginx.pid;
#工作模式及連線數上限
events {
worker_connections 1024; #單個後臺worker process程序的最大併發連結數
}
#設定http伺服器,利用它的反向代理功能提供負載均衡支援
http {
#設定mime型別(郵件支援型別),型別由mime.types檔案定義
include mime.types;
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;
rewrite_log on;
sendfile on;
#tcp_nopush on;
#連線超時時間
keepalive_timeout 120;
tcp_nodelay on;
#gzip壓縮開關
#gzip on;
#HTTP伺服器
server {
listen 80; #監聽80埠,80埠是知名埠號,用於HTTP協議
server_name image.hello.com; #定義使用www.xx.com訪問
#charset koi8-r;
#access_log logs/host.access.log main;
proxy_set_header X-Forwarded-Host $host;
proxy_set_header X-Forwarded-Server $host;
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
location / {
root F:\temp\image; #靜態檔案位置
}
}
}
儲存後,在命令列輸入 nginx -s reload,過載配置 。
在目錄下放一張圖片後,更改 host:在 C:\Windows\System32\drivers\etc 目錄下的hosts檔案中新增一條 DNS 記錄
127.0.0.1 image.hello.com
在網頁上輸入 http://image.hello.com/beauty.jpeg 即可訪問到該圖片
所以最主要的是配置相關的 server, 可以配置多個server,注意埠
server {
listen 80;
server_name manage.hello.com;
#charset koi8-r;
#access_log logs/host.access.log main;
proxy_set_header X-Forwarded-Host $host;
proxy_set_header X-Forwarded-Server $host;
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
location / {
proxy_pass http://127.0.0.1:8081;
proxy_connect_timeout 600;
proxy_read_timeout 600;
}
}
server {
listen 80;
server_name admin.hello.com;
#charset koi8-r;
#access_log logs/host.access.log main;
proxy_set_header X-Forwarded-Host $host;
proxy_set_header X-Forwarded-Server $host;
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
location / {
proxy_pass http://127.0.0.1:8082;
proxy_connect_timeout 600;
proxy_read_timeout 600;
}
}
hosts檔案中新增兩條 DNS 記錄, 注意web啟動繫結的埠要和nginx中的 配置的埠保持一致。
即可通過域名訪問不同的系統。