/render: fix app.yaml routing

pull/27/head
Ryan Barrett 2017-10-12 07:34:20 -07:00
rodzic ef89af7372
commit dce33bde16
2 zmienionych plików z 4 dodań i 5 usunięć

Wyświetl plik

@ -58,6 +58,10 @@ handlers:
secure: always
# dynamic
- url: /render
script: render.app
secure: always
- url: /wm/.+
script: add_webmention.app
secure: always
@ -74,10 +78,6 @@ handlers:
script: salmon.app
secure: always
- url: /render
script: render.app
secure: always
- url: /(acct:)?[^/]+/?
script: webfinger.app
secure: always

Wyświetl plik

@ -39,4 +39,3 @@ class RenderHandler(ModernHandler):
app = webapp2.WSGIApplication([
('/render', RenderHandler),
], debug=appengine_config.DEBUG)