mirror of
https://github.com/kuaifan/dootask.git
synced 2025-12-30 07:30:22 +00:00
28 lines
915 B
XML
28 lines
915 B
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<appengine-web-app xmlns="http://appengine.google.com/ns/1.0">
|
|
|
|
<threadsafe>true</threadsafe>
|
|
<sessions-enabled>false</sessions-enabled>
|
|
<runtime>java8</runtime>
|
|
|
|
<!-- Configure java.util.logging -->
|
|
<system-properties>
|
|
<property name="java.util.logging.config.file" value="WEB-INF/logging.properties"/>
|
|
</system-properties>
|
|
|
|
<!-- Path patterns not supported in production -->
|
|
<static-files>
|
|
<include path="/**">
|
|
<http-header name="Referrer-Policy" value="strict-origin"/>
|
|
<http-header name="Access-Control-Allow-Origin" value="*"/>
|
|
<http-header name="X-XSS-Protection" value="1; mode=block"/>
|
|
<http-header name="X-Content-Type-Options" value="nosniff"/>
|
|
</include>
|
|
</static-files>
|
|
|
|
<instance-class>F1</instance-class>
|
|
<automatic-scaling>
|
|
<max-idle-instances>1</max-idle-instances>
|
|
</automatic-scaling>
|
|
</appengine-web-app>
|