溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點(diǎn)擊 登錄注冊 即表示同意《億速云用戶服務(wù)條款》

CentOS7 yum 安裝 Nginx最新版本

發(fā)布時間:2020-07-10 17:05:32 來源:網(wǎng)絡(luò) 閱讀:510 作者:Mr_sheng 欄目:建站服務(wù)器

下載對應(yīng)當(dāng)前系統(tǒng)版本的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服務(wù)
systemctl start nginx


配置
默認(rèn)的配置文件在 /etc/nginx 路徑下,使用該配置已經(jīng)可以正確地運(yùn)行nginx;如需要自定義,修改其下的 nginx.conf 等文件即可。


測試

在瀏覽器地址欄中輸入部署nginx環(huán)境的機(jī)器的IP,如果一切正常,應(yīng)該能看到如下字樣的內(nèi)容。



  1. user  nginx;  

  2. worker_processes  1;  

  3.   

  4. error_log  /var/log/nginx/error.log warn;  

  5. pid        /var/run/nginx.pid;  

  6.   

  7.   

  8. events {  

  9.     worker_connections  1024;  

  10. }  

  11.   

  12.   

  13. http {  

  14.     include       /etc/nginx/mime.types;  

  15.     default_type  application/octet-stream;  

  16.   

  17.     log_format  main  '$remote_addr - $remote_user [$time_local] "$request" '  

  18.                       '$status $body_bytes_sent "$http_referer" '  

  19.                       '"$http_user_agent" "$http_x_forwarded_for"';  

  20.   

  21.     access_log  /var/log/nginx/access.log  main;  

  22.   

  23.     sendfile        on;  

  24.     #tcp_nopush     on;  

  25.   

  26.     keepalive_timeout  65;  

  27.   

  28.     #gzip  on;  

  29.   

  30.     #include /etc/nginx/conf.d/*.conf;  

  31.       

  32.      #設(shè)定負(fù)載均衡服務(wù)器列表  

  33.     upstream group1{  

  34.         #后端服務(wù)器訪問規(guī)則  

  35.         #ip_hash;  

  36.         #weight參數(shù)表示權(quán)重值,權(quán)值越高被分配到的幾率越大  

  37.           

  38.         #PC_Local  

  39.         server 192.168.187.133:80 weight=5;  

  40.           

  41.         #PC_Server  

  42.         server 192.168.187.134:80 weight=5;  

  43.           

  44.           

  45.     }  

  46.   

  47.       

  48.     server {  

  49.         listen       81;                #設(shè)置對外端口  

  50.         server_name  192.168.187.133 ;  #設(shè)置識別請求域名  

  51.         location / {  

  52.           

  53.             #定義服務(wù)器的默認(rèn)網(wǎng)站根目錄位置  

  54.             #root html;  

  55.               

  56.             #定義首頁索引文件的名稱  

  57.             #index index.html index.htm index.php;  

  58.               

  59.             proxy_pass  http://group1 ; #分流到group1集群  

  60.         }  

  61.     }  

  62. }  



向AI問一下細(xì)節(jié)

免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場,如果涉及侵權(quán)請聯(lián)系站長郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。

AI