在 ubuntu 系统用 nginx 部署静态 html

一、安装 nginx:

1
$ apt update -y && apt install nginx -y

二、把 index.html 放到 /var/www/html/ 目录下

三、启动 nginx 服务并且配置开机自启动:

1
2
$ systemctl start nginx
$ systemctl enable nginx