appengine-web.xml 776 B

12345678910111213141516171819202122232425
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <appengine-web-app xmlns="http://appengine.google.com/ns/1.0">
  3. <application>drawdotio</application>
  4. <!-- Configure java.util.logging -->
  5. <system-properties>
  6. <property name="java.util.logging.config.file" value="WEB-INF/logging.properties"/>
  7. </system-properties>
  8. <sessions-enabled>false</sessions-enabled>
  9. <threadsafe>false</threadsafe>
  10. <!-- Path patterns not supported in production -->
  11. <static-files>
  12. <include path="/**">
  13. <http-header name="Access-Control-Allow-Origin" value="*"/>
  14. </include>
  15. </static-files>
  16. <instance-class>F2</instance-class>
  17. <automatic-scaling>
  18. <min-idle-instances>1</min-idle-instances>
  19. <max-idle-instances>1</max-idle-instances>
  20. </automatic-scaling>
  21. </appengine-web-app>