您好,登錄后才能下訂單哦!
下載對應當前系統版本的nginx包(package)
# wget http://nginx.org/packages/centos/7/noarch/RPMS/nginx-release-centos-7-0.el7.ngx.noarch.rpm
建立nginx的yum倉庫
# rpm -ivh nginx-release-centos-7-0.el7.ngx.noarch.rpm
下載并安裝nginx
# yum install nginx
啟動nginx服務
systemctl start nginx
配置
默認的配置文件在 /etc/nginx 路徑下,使用該配置已經可以正確地運行nginx;如需要自定義,修改其下的 nginx.conf 等文件即可。
測試
在瀏覽器地址欄中輸入部署nginx環境的機器的IP,如果一切正常,應該能看到如下字樣的內容。
user nginx;
worker_processes 1;
error_log /var/log/nginx/error.log warn;
pid /var/run/nginx.pid;
events {
worker_connections 1024;
}
http {
include /etc/nginx/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 /var/log/nginx/access.log main;
sendfile on;
#tcp_nopush on;
keepalive_timeout 65;
#gzip on;
#include /etc/nginx/conf.d/*.conf;
upstream group1{
#后端服務器訪問規則
#ip_hash;
#weight參數表示權重值,權值越高被分配到的幾率越大
#PC_Local
server 192.168.187.133:80 weight=5;
#PC_Server
server 192.168.187.134:80 weight=5;
}
server {
listen 81; #設置對外端口
server_name 192.168.187.133 ; #設置識別請求域名
location / {
#定義服務器的默認網站根目錄位置
#root html;
#定義首頁索引文件的名稱
#index index.html index.htm index.php;
proxy_pass http://group1 ; #分流到group1集群
}
}
}
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。