您的当前位置:首页正文

阿里云CentOS 7.5 安装nginx

2024-11-29 来源:个人技术集锦

1.添加nginx源

[root@iZ8vb2zp3hb2pskrfnjcrbZ ~]# rpm -ivh http://nginx.org/packages/centos/7/noarch/RPMS/nginx-release-centos-7-0.el7.ngx.noarch.rpm

2.安装nginx

[root@iZ8vb2zp3hb2pskrfnjcrbZ ~]# yum -y install nginx

3.启动nginx

# 设置开机启动
[root@iZ8vb2zp3hb2pskrfnjcrbZ ~]# systemctl enable nginx
# 启动nginx服务
[root@iZ8vb2zp3hb2pskrfnjcrbZ ~]# service nginx start
# 重新加载配置
[root@iZ8vb2zp3hb2pskrfnjcrbZ ~]# service nginx reload

4.说明

显示全文