Skip to content

Commit

Permalink
Simplify app.yaml regular expresssions now that $ may be placed at th…
Browse files Browse the repository at this point in the history
…e end.
  • Loading branch information
boombatower committed Feb 20, 2014
1 parent cd6fc5c commit c045b62
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions app.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -14,11 +14,11 @@ handlers:
script: wrapper.php

# Handle static requests.
- url: /(.*\.(ico$|jpg$|png$|gif$|htm$|html$|css$|js$))
- url: /(.*\.(ico|jpg|png|gif|htm|html|css|js))$
# Location from which to serve static files.
static_files: \1
# Upload static files for static serving.
upload: (.*\.(ico$|jpg$|png$|gif$|htm$|html$|css$|js$))
upload: (.*\.(ico|jpg|png|gif|htm|html|css|js))$
# Ensures that a copy of the static files is left for Drupal during runtime.
application_readable: true

Expand Down

0 comments on commit c045b62

Please sign in to comment.