nginxでディレクトリの一覧を公開(Indexes) 2018-09-26 Nginx locationディレクティブにautoindex関連の設定を追加 1234567location / { autoindex on; // ディレクトリを見せる autoindex_exact_size off; // ファイルサイズを見せる autoindex_localtime on; // タイムスタンプを見せる root /path/to/directory; break;}