# 在80端口下加一个location并加上路径,这样默认访问80,只会出现html根目录内容,不会显示/data/ftpdata下的内容,必须加上/file才会显示。 # 如果把alias换成root会找不到路径,404了,具体可以了解下alias和root的区别。 location /file { alias /data/ftpdata; autoindex on; autoindex_exact_size off; autoindex_localtime on; }
# 普通http location / { root /data/fs; autoindex on; autoindex_exact_size off; autoindex_localtime on; }