表題の通り。apacheにおける”DirectoryIndex“ってnginxではどうやるんだっけ?というメモ。
■ 環境
- Nginx 1.12.2
- Amazon Linux
■ index
Module ngx_http_index_module
https://nginx.org/en/docs/http/ngx_http_index_module.html#index
デフォルト設定では”index.html”を見るようになっているが、諸事情により別のファイルを”/“でアクセスされた時に表示したい。
対象の”location“ディレクティブに”index“ディレクティブを追加する。
location / {
:
index index2.html index.html
:
}
以上。