CentOS 7 yum 安装 Nginx

添加CentOS 7 Nginx yum资源库,打开终端,使用以下命令:

sudo rpm -Uvh http://nginx.org/packages/centos/7/noarch/RPMS/nginx-release-centos-7-0.el7.ngx.noarch.rpm

安装Nginx

  • 在你的CentOS 7 服务器中使用yum命令从Nginx源服务器中获取来安装Nginx:
    sudo yum install -y nginx
    Nginx将完成安装在你的CentOS 7 服务器中。

启动Nginx

  • 刚安装的Nginx不会自行启动。运行Nginx:
    sudo systemctl start nginx.service
    如果一切进展顺利的话,现在你可以通过你的域名或IP来访问你的Web页面来预览一下Nginx的默认页面;如果看到这个页面,那么说明你的CentOS 7 中 web服务器已经正确安装。

CentOS 7 开机启动Nginx

  • sudo systemctl enable nginx.service
    更多systemctl命令可查看《systemctl命令用法》

Nginx配置信息

  • 网站文件存放默认目录
    /usr/share/nginx/html
  • 网站默认站点配置
    /etc/nginx/conf.d/default.conf
  • 自定义Nginx站点配置文件存放目录
    /etc/nginx/conf.d/
  • Nginx全局配置
    ``/etc/nginx/nginx.conf```
  • Nginx启动
    nginx -c nginx.conf


链接:https://www.jianshu.com/p/6874cc406f3f
 
posted @ 2023-02-07 14:02  豆浆D  阅读(262)  评论(0编辑  收藏  举报