Skip to content

Instantly share code, notes, and snippets.

@muratsplat
Last active October 14, 2015 13:39
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save muratsplat/9d152931a563dcfc433e to your computer and use it in GitHub Desktop.
Save muratsplat/9d152931a563dcfc433e to your computer and use it in GitHub Desktop.
Example of app.yml for Laravel5.x + Elixir on Google App Engine
application: yourApp
version: one
runtime: php55
api_version: 1
handlers:
- url: /favicon\.ico
static_files: public/favicon.ico
upload: public/favicon\.ico
- url: /assets/(.*\.(htm$|html$|css$|js$|png$))
static_files: public/assets/\1
upload: public/assets/(.*\.(htm$|html$|css$|js$|png$))
application_readable: true
# For Elixir build assets
- url: /build/assets/(.*\.(htm$|html$|css$|js$|png$))
static_files: public/build/assets/\1
upload: public/build/assets/(.*\.(htm$|html$|css$|js$|png$))
application_readable: true
- url: /.*
script: public/index.php
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment