Skip to content

Instantly share code, notes, and snippets.

@kadoyau
Last active June 15, 2017 13:06
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save kadoyau/802c7df3061b1e452b31 to your computer and use it in GitHub Desktop.
Save kadoyau/802c7df3061b1e452b31 to your computer and use it in GitHub Desktop.
DokkuにLaravel5のプロジェクトをデプロイする際の設定ファイル
https://github.com/heroku/heroku-buildpack-php
location / {
# try to serve file directly, fallback to rewrite
try_files $uri @rewriteapp;
}
location @rewriteapp {
rewrite ^(.*)$ /index.php/$1 last;
}
web: vendor/bin/heroku-php-nginx -C nginx_app.conf public/
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment