您好我开始使用nginx,将nginx.conf设置为我的项目文件夹C:/ Projects。
我使用(AutoIndex:on)来获取目录列表,但不起作用
worker_processes 1;
events {
worker_connections 1024;
}
http {
include mime.types;
default_type application/octet-stream;
sendfile on;
server {
listen 80;
server_name localhost;
root C:\Project ;
index index.html index.htm index.php;
location / {
autoindex on;
}
error_page 500 502 503 504 /50x.html;
location = /50x.html {
root html;
}
}
答案 0 :(得分:0)
如果您的index
目录(或root
下的任何子目录)中存在C:\Project
个文件之一,则会显示索引页面而不是索引页面内容。
您可能还想检查root
下所有内容的权限。它们需要由运行Nginx进程的用户读取。
可能是许多不同的事情;您将来需要通过您尝试过的尝试来澄清您的问题,并且未尝试过。
答案 1 :(得分:0)
将您的autoindex on;
移到位置限制之外
worker_processes 1;
事件{ worker_connections 1024; }
http { 包括mime.types; default_type应用程序/八位字节流; 发送文件;
server {
listen 80;
server_name localhost;
root C:\Project ;
index index.html index.htm index.php;
# moved here
autoindex on;
error_page 500 502 503 504 /50x.html;
location = /50x.html {
root html;
}
}