Last active
October 14, 2015 13:39
-
-
Save muratsplat/9d152931a563dcfc433e to your computer and use it in GitHub Desktop.
Example of app.yml for Laravel5.x + Elixir on Google App Engine
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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