nginx配置完成后为什么访问localhost还是nginx的欢迎页面啊

2024-12-01 00:48:43
推荐回答(1个)
回答(1):

你的root没有配置。

server {         
listen       8000;         
server_name  testhost  alias  another.alias;         
location / {             
root   "D:\site";             
index  index.html index.htm;         
}     
}