激情久久久_欧美视频区_成人av免费_不卡视频一二三区_欧美精品在欧美一区二区少妇_欧美一区二区三区的

服務器之家:專注于服務器技術及軟件下載分享
分類導航

云服務器|WEB服務器|FTP服務器|郵件服務器|虛擬主機|服務器安全|DNS服務器|服務器知識|Nginx|IIS|Tomcat|

服務器之家 - 服務器技術 - Nginx - CentOS系統rpm安裝Nginx和配置

CentOS系統rpm安裝Nginx和配置

2022-01-12 17:17beyond阿亮 Nginx

大家好,本篇文章主要講的是CentOS系統rpm安裝Nginx和配置,感興趣的同學趕快來看一看吧,對你有幫助的話記得收藏一下,方便下次瀏覽

CentOS rpm安裝Nginx和配置

官方下載地址: http://nginx.org/en/download.html

介紹

Nginx(“engine x”)是一款由俄羅斯的程序設計師Igor Sysoev所開發高性能的 Web和 反向代理 服務器,也是一個 IMAP/POP3/SMTP 代理服務器。

rpm包安裝

?
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
#安裝nginx,rpm安裝
#rpm安裝nginx包
rpm -Uvh --force --nodeps nginx-1.16.1-1.el7.ngx.x86_64.rpm
 
#查看啟動狀態
systemctl status nginx
 
顯示如下:
● nginx.service - nginx - high performance web server
   Loaded: loaded (/usr/lib/systemd/system/nginx.service; enabled; vendor preset: disabled)
   Active: active (running) since 五 2021-11-26 11:12:41 CST; 5 days ago
     Docs: http://nginx.org/en/docs/
  Process: 1379 ExecStart=/usr/sbin/nginx -c /etc/nginx/nginx.conf (code=exited, status=0/SUCCESS)
 Main PID: 1543 (nginx)
    Tasks: 5
   CGroup: /system.slice/nginx.service
           ├─1543 nginx: master process /usr/sbin/nginx -c /etc/nginx/nginx.conf
           ├─1544 nginx: worker process
           ├─1546 nginx: worker process
           ├─1547 nginx: worker process
           └─1548 nginx: worker process
 
11月 26 11:12:41 liang systemd[1]: Starting nginx - high performance web server...
11月 26 11:12:41 liang systemd[1]: Started nginx - high performance web server.
 
#啟動
systemctl start nginx
 
#重啟
systemctl restart nginx
 
#開機自啟動服務
systemctl enable nginx
 
#查看開機啟動狀態 enabled:開啟, disabled:關閉
systemctl is-enabled nginx

安裝完后在 修改 /etc/nginx/conf.d/default.conf 配置文件,參考內容如下:

?
1
vim /etc/nginx/conf.d/default.conf
?
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
server {
    listen       80;
    server_name  localhost;
 
    #charset koi8-r;
    #access_log  /var/log/nginx/host.access.log  main;
 
 
     location /ui {
        alias   /data/dist;
        index  index.html index.htm;
     }
     
     location /file/ {
         root   /home/data/;
        index  index.html index.htm;
     }   
    # websocket配置wss
    location /liangws/ {
        proxy_pass http://192.168.0.19:8080/;
        proxy_http_version 1.1;
        proxy_set_header Upgrade $http_upgrade;
        proxy_set_header Connection "upgrade";
        proxy_set_header Remote_addr $remote_addr;
        proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
        proxy_read_timeout 600s;
    }
 
    location ~ /gat {
        proxy_set_header Host  $host;
        proxy_set_header X-Real-IP $remote_addr;
        proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
        proxy_pass http://localhost:18080 ;
    }
 
    #error_page  404              /404.html;
 
    # redirect server error pages to the static page /50x.html
    #
    error_page   500 502 503 504  /50x.html;
    location = /50x.html {
        root   /usr/share/nginx/html;
    }
 
    # proxy the PHP scripts to Apache listening on 127.0.0.1:80
    #
    #location ~ \.php$ {
    #    proxy_pass   http://127.0.0.1;
    #}
 
    # pass the PHP scripts to FastCGI server listening on 127.0.0.1:9000
    #
    #location ~ \.php$ {
    #    root           html;
    #    fastcgi_pass   127.0.0.1:9000;
    #    fastcgi_index  index.php;
    #    fastcgi_param  SCRIPT_FILENAME  /scripts$fastcgi_script_name;
    #    include        fastcgi_params;
    #}
 
    # deny access to .htaccess files, if Apache's document root
    # concurs with nginx's one
    #
    #location ~ /\.ht {
    #    deny  all;
    #}
}

注意:靜態文件下載,需要依賴nginx,我們需要將這些文件放到 nginx配置文件中的 /home/data/aaa 對應的目錄下。

啟動服務配置

?
1
cat /usr/lib/systemd/system/nginx.service
?
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
[Unit]
Description=nginx - high performance web server
Documentation=http://nginx.org/en/docs/
After=network-online.target remote-fs.target nss-lookup.target
Wants=network-online.target
 
[Service]
Type=forking
PIDFile=/var/run/nginx.pid
ExecStart=/usr/sbin/nginx -c /etc/nginx/nginx.conf
ExecReload=/bin/kill -s HUP $MAINPID
ExecStop=/bin/kill -s TERM $MAINPID
 
[Install]
WantedBy=multi-user.target

到此這篇關于CentOS系統rpm安裝Nginx和配置的文章就介紹到這了,更多相關CentOS rpm安裝Nginx內容請搜索服務器之家以前的文章或繼續瀏覽下面的相關文章希望大家以后多多支持服務器之家!

原文鏈接:https://blog.csdn.net/yinjl123456/article/details/121914850

延伸 · 閱讀

精彩推薦
主站蜘蛛池模板: 视频毛片| 日本一区视频在线观看 | 成人久久久精品乱码一区二区三区 | 红杏亚洲影院一区二区三区 | 欧美日韩精品一二三区 | 国产午夜亚洲精品午夜鲁丝片 | 黄色av网站免费看 | 自拍亚洲伦理 | 午夜亚洲视频 | 中文字幕免费在线看 | 暖暖免费观看高清完整版电影 | 午夜视频国产 | 99久久精品免费看国产四区 | 成人亚洲一区 | qyl在线视频精品免费观看 | 美女喷水网站 | 久久久久久久一区二区 | 成人国产在线看 | 91懂色| 成人福利在线 | 92自拍视频 | 国产精品99久久久久久久vr | 成人毛片100部免费观看 | 国产成人精品一区二区视频免费 | 自拍偷拍亚洲图片 | 免费中文视频 | 超碰99在线观看 | 视频一区二区三区在线观看 | 成人三级视频网站 | 国产成人精品区 | 一级网站片 | 久久久久日本精品一区二区三区 | 激情综合在线 | jizzjizz中国人少妇中文 | 日韩在线欧美在线 | 欧洲狠狠鲁 | 国产亚洲精品久久久久久久 | 欧美一区二区三区久久 | 黄网站免费观看视频 | 性看小视频 | av在线免费在线观看 |