mirror of
https://github.com/google/nomulus.git
synced 2025-05-04 22:17:51 +02:00
Remove the application and version tags and replace "module" with "service". The old tags have been deprecated for ages, and they cause warnings when we do gradle deployment/staging. TESTED: Deployed to crash, everything still seemed to work to the extent that crash can be expected to, service variations still happened, all services got updated. Minimal risk to the other environments. ------------- Created by MOE: https://github.com/google/moe MOE_MIGRATED_REVID=223799777
29 lines
870 B
XML
29 lines
870 B
XML
<?xml version="1.0" encoding="UTF-8"?>
|
|
<appengine-web-app xmlns="http://appengine.google.com/ns/1.0">
|
|
|
|
<runtime>java8</runtime>
|
|
<service>backend</service>
|
|
<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="qa"/>
|
|
</system-properties>
|
|
|
|
<static-files>
|
|
<include path="/*.html" expiration="1h"/>
|
|
</static-files>
|
|
|
|
<!-- Prevent uncaught servlet errors from leaking a stack trace. -->
|
|
<static-error-handlers>
|
|
<handler file="error.html"/>
|
|
</static-error-handlers>
|
|
</appengine-web-app>
|