mirror of
https://github.com/google/nomulus.git
synced 2025-05-03 21:47:51 +02:00
The YAML configuration files are now being built directly into the JAR, and not stored in the WEB-INF/ directory, so this is unnecessary. ------------- Created by MOE: https://github.com/google/moe MOE_MIGRATED_REVID=146815937
38 lines
1.3 KiB
XML
38 lines
1.3 KiB
XML
<?xml version="1.0" encoding="UTF-8"?>
|
|
<appengine-web-app xmlns="http://appengine.google.com/ns/1.0">
|
|
|
|
<application>domain-registry</application>
|
|
<version>1</version>
|
|
<module>backend</module>
|
|
<threadsafe>true</threadsafe>
|
|
<sessions-enabled>true</sessions-enabled>
|
|
<instance-class>B4</instance-class>
|
|
<basic-scaling>
|
|
<max-instances>10</max-instances>
|
|
<idle-timeout>10m</idle-timeout>
|
|
</basic-scaling>
|
|
|
|
<system-properties>
|
|
<property name="java.util.logging.config.file"
|
|
value="WEB-INF/logging.properties"/>
|
|
<property name="google.registry.environment"
|
|
value="local"/>
|
|
<property name="appengine.generated.dir"
|
|
value="/tmp/domain-registry-appengine-generated/local/"/>
|
|
</system-properties>
|
|
|
|
<static-files>
|
|
<include path="/*.html">
|
|
<http-header name="Cache-Control" value="max-age=0,must-revalidate" />
|
|
</include>
|
|
<include path="/assets/js/**">
|
|
<http-header name="Cache-Control" value="max-age=0,must-revalidate" />
|
|
</include>
|
|
<include path="/assets/css/**">
|
|
<http-header name="Cache-Control" value="max-age=0,must-revalidate" />
|
|
</include>
|
|
<include path="/assets/images/**">
|
|
<http-header name="Cache-Control" value="max-age=0,must-revalidate" />
|
|
</include>
|
|
</static-files>
|
|
</appengine-web-app>
|