代码改变世界

windows nginx 目录配置

2019-05-12 20:57  brookin  阅读(3723)  评论(0编辑  收藏  举报
http {
	server {
		listen       80;
		server_name  www.test.com;
		location / {
			root   E:/data/www;
			index  index.html index.htm;
		}
	}
}