Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我想通过 http 共享文件夹内容。我已经安装了带有自动索引的 nginx 并将其配置到我的文件夹中。问题是我需要带有文件/文件夹列表的html文件,但我想要某种具有相同信息的xml。
是否可以使用标准的 nginx 工具来完成,或者我应该实现一些脚本来解决这个问题?
您必须涉及一些脚本才能使其工作。使用 nginx 配置可以获得的大部分内容是自定义页脚和页眉。
顺便说一句,开发者期待在 nginx 中添加 xml 索引模块。
从版本 1.7.9 开始,您可以使用:
autoindex on; autoindex_format xml;
请参阅文档: http: //nginx.org/r/autoindex_format
sudo apt install libnginx-mod-http-fancyindex
花式索引开启;