一旦我以前在输入 URL 时看到过这个http://test.com/test/
,而不是给我一个 html 页面,它给了我一个类似“文件浏览器”的界面来浏览给定位置的所有文件。
我认为它可能是一个可以在位置上下文中启用的 nginx 模块。
nginx.conf
文件:
worker_processes 1;
events {
worker_connections 1024;
}
http {
include mime.types;
default_type application/octet-stream;
sendfile on;
keepalive_timeout 65;
server {
listen 80;
server_name 122.97.248.252;
location /test {
root /home/yozloy/html/;
autoindex on;
}
error_page 500 502 503 504 /50x.html;
location = /50x.html {
root html;
}
}
}
更新error.log
2012/05/19 20:48:33 [错误] 20357#0: *72 open() "/home/yozloy/html/test" 失败(2:没有这样的文件或目录),客户端:125.43.236.33,服务器:122.97.248.252,请求:“GET /test HTTP/1.1”,主机:“unicom2.markson.hk
我必须误解位置的/test
意思,我认为这意味着当我输入http://example.com/test时,它会访问根字典,即/home/yozloy/html/