静态HTTP服务器

server {

    listen 80; # 端口号

    location / {

        root /usr/share/nginx/html; # 静态文件路径

    }

}

你可能感兴趣的:(静态HTTP服务器)