腾讯云主机使用2安装nginx

45次阅读

共计 390 个字符,预计需要花费 1 分钟才能阅读完成。

腾讯云的 centos 主机配置的 yum 源是有 nginx 的,so 安装非常方面,不像之前那样还需要安装 nginx 的支撑组件。
话不多说,开始
1、还是先看看有没有 yum search nginx
2、有了,就安装吧 yum install nginx

3、安装完后,rpm -qa | grep nginx 查看

4、最常用的命令

 启动 nginx:systemctl start nginx
停止 nginx:systemctl stop nginx
加入开机启动:systemctl enable nginx
查看 nginx 的状态:systemctl status nginx

5、输入 ip:80 发现并不是我们熟悉的 welcome to nginx!,而是一个 centos 的英文站点,这个去配置文件看看。

6、去 /etc/nginx/nginx.conf 看看

这里 /usr/share/nginx/html 文件夹下的 index.html 就是展现的内容

正文完
 0