nginx静态服务代理

2019-05-06  本文已影响0人  igor_d140

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

上一篇 下一篇

猜你喜欢

热点阅读