drawio/war/WEB-INF/appengine-web.xml

32 lines
1,002 B
XML
Raw Normal View History

2016-09-06 14:07:11 +00:00
<?xml version="1.0" encoding="utf-8"?>
<appengine-web-app xmlns="http://appengine.google.com/ns/1.0">
<application>drawdotio</application>
<!-- IMPORTANT! DO NOT CHANGE THIS VALUE IN SOURCE CONTROL! -->
2016-12-14 16:10:00 +00:00
<version>6-0-2-4</version>
2016-09-06 14:07:11 +00:00
<!-- Configure java.util.logging -->
<system-properties>
<property name="java.util.logging.config.file" value="WEB-INF/logging.properties"/>
</system-properties>
<sessions-enabled>false</sessions-enabled>
<threadsafe>false</threadsafe>
<!-- FOR LOCAL TESTING OF EMBED2 WITH DYNAMIC LOADING -->
<static-files>
<include path="/styles/**" >
<http-header name="Access-Control-Allow-Origin" value="*" />
</include>
<include path="/stencils/**" >
<http-header name="Access-Control-Allow-Origin" value="*" />
</include>
<include path="/shapes/**" >
<http-header name="Access-Control-Allow-Origin" value="*" />
</include>
<include path="/**" />
</static-files>
2016-11-18 12:37:56 +00:00
<instance-class>F2</instance-class>
2016-09-06 14:07:11 +00:00
</appengine-web-app>