shimgo
8/28/2018 - 2:57 AM

ファイルを指すURLに個別のファイルのエイリアスを作る

/etc/nginx/conf.d/webapp_healthd.conf

  location /hoge.txt {
    alias /var/app/current/public/hoge.txt;
    gzip_static on;
    gzip on;
    expires max;
    add_header Cache-Control public;
  }