ubuntu 16.0.4
/etc/nginx/conf.d
#static.conf
server {
listen 8000; #80
server_name localhost; #域名
location / {
root /var/static;
index index.html index.htm;
}
}
安装
sudo apt-get install nginx