nginxの環境でServer Side Includesを使用する機会があったのでメモ
/etc/nginx/nginx.confを編集
location /内で下記の通りssiを有効化する
nginx.conf
http {
server {
location / {
ssi on;
ssi_last_modified on;
}
}
}
nginxの再起動
$ sudo service nginx restart
テストとして.shtmlファイルを作成
公開ディレクトリに$ sudo vi test.shtml
でファイルを作成する
test.html
<!--#config timefmt="%A %B %d, %Y" -->
Today is <!--#echo var="DATE_LOCAL" -->
確認
http://IP_Adress/test.shtml にアクセスする
正しく設定されていれば、日付が表示されるはず