Nginx反向代理與負載均衡:節點伺服器單/多虛擬機器配置+實驗環境搭建+原理解析
阿新 • • 發佈:2019-01-27
主機型別 | 作業系統 | IP地址 | 作用 |
宿主機 | Windows 7 | 遠端3臺虛擬機器,進行配置,同時也作為後面測試使用的客戶端 | |
虛擬機器1: lb01 | CentOS 6.5 | 10.0.0.7/24 | 負載均衡伺服器lb01,將請求分擔到Web節點伺服器中 |
虛擬機器2: web01 |
CentOS 6.5 |
10.0.0.9/24 | Web節點伺服器web01 |
虛擬機器3: web02 | CentOS 6.5 | 10.0.0.10/24 | Web節點伺服器web02 |
-
web01作為節點伺服器,配置它的虛擬機器域名為bbs.xpleaf.org
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 |
[[email protected] conf] # cat nginx.conf
worker_processes 1;
events {
worker_connections 1024;
}
http {
include mime.types;
default_type application /octet-stream ;
sendfile on;
keepalive_timeout 65;
log_format main '$remote_addr - $remote_user [$time_local] "$request" '
'$status $body_bytes_sent "$http_referer" '
'"$http_user_agent" "$http_x_forwarded_for"' ;
server {
listen 80;
server_name bbs.xpleaf.org;
location / {
root html /bbs ;
index index.html index.htm;
}
access_log logs /access_bbs |