nginx虚拟主机配置

文章参考 https://www.cnblogs.com/jun1019/p/6260674.html

server {
	listen       9911;
	location / {
		root   G:\ZLST\gitCode\www;
		index  index.html index.htm;
	}
}

http://localhost:9911/

就能访问G:\ZLST\gitCode\www\index.html 文件

猜你喜欢

转载自hbiao68.iteye.com/blog/2404035