Skip to content

Instantly share code, notes, and snippets.

@pigeonflight
Created January 15, 2014 14:37
Show Gist options
  • Save pigeonflight/8437386 to your computer and use it in GitHub Desktop.
Save pigeonflight/8437386 to your computer and use it in GitHub Desktop.
A sample app.yaml for deploying a documentation to app engine
application: <app-engine-id>
version: 1
runtime: python27
threadsafe: yes
api_version: 1
handlers:
- url: /
static_files: _build/html/index.html
upload: _build/html/index.html
secure: always
login: admin
- url: /
static_dir: _build/html
secure: always
login: admin
- url: /(.*\.(gif|png|jpg|ico|js|css|html))
static_files: /
upload: _build/html/(.*\.(gif|png|jpg|ico|js|css|html))
secure: always
login: admin
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment