目录
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内容请搜索快网idc以前的文章或继续浏览下面的相关文章希望大家以后多多支持快网idc!
原文链接:https://blog.csdn.net/yinjl123456/article/details/121914850
相关文章
猜你喜欢
- 64M VPS建站:怎样选择合适的域名和SSL证书? 2025-06-10
- 64M VPS建站:怎样优化以提高网站加载速度? 2025-06-10
- 64M VPS建站:是否适合初学者操作和管理? 2025-06-10
- ASP.NET自助建站系统中的用户注册和登录功能定制方法 2025-06-10
- ASP.NET自助建站系统的域名绑定与解析教程 2025-06-10
TA的动态
- 2025-07-10 怎样使用阿里云的安全工具进行服务器漏洞扫描和修复?
- 2025-07-10 怎样使用命令行工具优化Linux云服务器的Ping性能?
- 2025-07-10 怎样使用Xshell连接华为云服务器,实现高效远程管理?
- 2025-07-10 怎样利用云服务器D盘搭建稳定、高效的网站托管环境?
- 2025-07-10 怎样使用阿里云的安全组功能来增强服务器防火墙的安全性?
快网idc优惠网
QQ交流群
您的支持,是我们最大的动力!
热门文章
-
2025-05-25 54
-
2025-05-25 89
-
2025-05-25 35
-
2025-05-29 95
-
2025-05-29 37
热门评论