在我的/etc/nginx/nginx.conf
文件中,我有一个像这样的服务器块:
server {
location /testme/ {
root /home/username/sites;
index index.html index.htm;
}
}
当我在浏览器中访问http:localhost/testme/
时,不应该在/home/username/sites/testme/
目录中提供文件,我的文件是index.html
吗?相反,我得到404 Not Found Error。我在这里做错了什么。
注意:更改配置后我做了sudo nginx -s reload
。