mirror of
https://github.com/google/nomulus.git
synced 2025-08-12 12:39:39 +02:00
Add static IP connector to crash and alpha configs (#2213)
This commit is contained in:
parent
e647d4e215
commit
f50290ce1d
3 changed files with 19 additions and 0 deletions
|
@ -18,6 +18,13 @@
|
||||||
value="alpha"/>
|
value="alpha"/>
|
||||||
</system-properties>
|
</system-properties>
|
||||||
|
|
||||||
|
|
||||||
|
<!-- Enable external traffic to go through VPC, required for static ip -->
|
||||||
|
<vpc-access-connector>
|
||||||
|
<name>projects/domain-registry-alpha/locations/us-central1/connectors/appengine-connector</name>
|
||||||
|
<egress-setting>all-traffic</egress-setting>
|
||||||
|
</vpc-access-connector>
|
||||||
|
|
||||||
<static-files>
|
<static-files>
|
||||||
<include path="/*.html" expiration="1m"/>
|
<include path="/*.html" expiration="1m"/>
|
||||||
</static-files>
|
</static-files>
|
||||||
|
|
|
@ -18,6 +18,12 @@
|
||||||
value="crash"/>
|
value="crash"/>
|
||||||
</system-properties>
|
</system-properties>
|
||||||
|
|
||||||
|
<!-- Enable external traffic to go through VPC, required for static ip -->
|
||||||
|
<vpc-access-connector>
|
||||||
|
<name>projects/domain-registry-crash/locations/us-central1/connectors/appengine-connector</name>
|
||||||
|
<egress-setting>all-traffic</egress-setting>
|
||||||
|
</vpc-access-connector>
|
||||||
|
|
||||||
<static-files>
|
<static-files>
|
||||||
<include path="/*.html" expiration="1m"/>
|
<include path="/*.html" expiration="1m"/>
|
||||||
</static-files>
|
</static-files>
|
||||||
|
|
|
@ -22,6 +22,12 @@
|
||||||
<include path="/*.html" expiration="1h"/>
|
<include path="/*.html" expiration="1h"/>
|
||||||
</static-files>
|
</static-files>
|
||||||
|
|
||||||
|
<!-- Enable external traffic to go through VPC, required for static ip -->
|
||||||
|
<vpc-access-connector>
|
||||||
|
<name>projects/domain-registry-qa/locations/us-central1/connectors/appengine-connector</name>
|
||||||
|
<egress-setting>all-traffic</egress-setting>
|
||||||
|
</vpc-access-connector>
|
||||||
|
|
||||||
<!-- Prevent uncaught servlet errors from leaking a stack trace. -->
|
<!-- Prevent uncaught servlet errors from leaking a stack trace. -->
|
||||||
<static-error-handlers>
|
<static-error-handlers>
|
||||||
<handler file="error.html"/>
|
<handler file="error.html"/>
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue