Skip to content

Instantly share code, notes, and snippets.

@iolson
Created November 4, 2016 20:11
Show Gist options
  • Save iolson/7416c6266c2545836e0e9735722c8d76 to your computer and use it in GitHub Desktop.
Save iolson/7416c6266c2545836e0e9735722c8d76 to your computer and use it in GitHub Desktop.
location / {
# try to serve file directly, fallback to rewrite
try_files $uri @rewriteapp;
}
location @rewriteapp {
# rewrite all to app.php
rewrite ^(.*)$ /index.php$1 last;
}
web: vendor/bin/heroku-php-nginx -C nginx.conf public/
queue: php artisan queue:work --sleep=3 --tries=3 --daemon
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment