Advertisement
Guest User

Untitled

a guest
May 25th, 2016
60
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.11 KB | None | 0 0
  1. application: maharsh-website
  2. version: 1
  3. runtime: python27
  4. api_version: 1
  5. threadsafe: false
  6. #application_readable: false
  7.  
  8. handlers:
  9. - url: /
  10. static_files: static/index.html
  11. upload: static/index.html
  12. secure: always
  13.  
  14. - url: /index.html
  15. static_files: static/index.html
  16. upload: static/index.html
  17. secure: always
  18.  
  19. - url: /(.*\.(gif|png|jpg|ico|bmp|html|css|js|otf|eot|svg|ttf|woff))
  20. static_files: static/\1
  21. upload: static/(.*\.(gif|png|jpg|ico|bmp|html|css|js|otf|eot|svg|ttf|woff))
  22. secure: always
  23.  
  24. - url: /static/(.*\.(gif|png|jpg|ico|bmp|html|css|js|otf|eot|svg|ttf|woff))
  25. static_files: static/\1
  26. upload: static/(.*\.(gif|png|jpg|ico|bmp|html|css|js|otf|eot|svg|ttf|woff))
  27. secure: always
  28.  
  29. - url: /pi
  30. script: pi.app
  31. secure: always
  32.  
  33. - url: /dictionary
  34. script: dictionary.app
  35. secure: always
  36.  
  37. - url: /houseSearch
  38. script: houseSearch.app
  39. secure: always
  40.  
  41. - url: /loginPageAuth
  42. script: loginPageAuth.app
  43. secure: always
  44.  
  45. - url: /sentiment
  46. script: sentiment.app
  47. secure: always
  48.  
  49.  
  50.  
  51. # - url: .*
  52. # script: myproject.wsgi.application
  53.  
  54.  
  55. libraries:
  56. - name: jinja2
  57. version: latest
  58. - name: webapp2
  59. version: latest
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement