1 安装
yum install nginx
2 启动
systemctl status nginx
// or
service nginx start
[图片上传中...(image.png-ad0bb7-1556529207026-0)]
3 查看运行状态
systemctl status nginx
// or
service nginx status
image.png
4 配置 nginx
vi /etc/nginx/nginx.conf
配置一个服务(默认服务)
server {
listen 80 default_server; # 配置一个服务 端口 0
listen [::]:80 default_server; # 配置一个服务 端口 1
server_name wedding; # 配置一个服务 名称
root /home/webapps/wedding; # 配置一个服务 本地网站地址(不配的话默认打开 nginx 默认首页)
重启 nginx
systemctl restart nginx
5 开启阿里云ECS 80 端口
image.png6 阿里云外网访问
直接输入阿里云外网直接访问
image.png
7 其它命令
systemctl start nginx #启动
systemctl stop nginx #停止
systemctl restart nginx #重启
systemctl status nginx #查看运行状态
systemctl enable nginx #开机启动
nginx -v #查看nginx版本号
service nginx reload #重新加载配置文件
vi /etc/nginx/conf.d/default.conf #打开配置文件
网友评论