mirror of
https://github.com/google/nomulus.git
synced 2025-05-04 05:57:51 +02:00
These are now handled by the pubapi service and all publicly facing sites that were using these APIs have already been migrated over. For documentation on the newly added dispatch.xml file, see: https://cloud.google.com/appengine/docs/standard/java/config/dispatchref Note that the --auto_update_dispatch parameter needs to be passed to the `appcfg update` command in order to apply this new XML file. ------------- Created by MOE: https://github.com/google/moe MOE_MIGRATED_REVID=200441580
20 lines
478 B
XML
20 lines
478 B
XML
<?xml version="1.0" encoding="UTF-8"?>
|
|
<dispatch-entries>
|
|
<!-- Send all public-facing unauthenticated traffic to the pubapi service. -->
|
|
<dispatch>
|
|
<url>*/rdap/*</url>
|
|
<module>pubapi</module>
|
|
</dispatch>
|
|
<dispatch>
|
|
<url>*/whois/*</url>
|
|
<module>pubapi</module>
|
|
</dispatch>
|
|
<dispatch>
|
|
<url>*/_dr/whois</url>
|
|
<module>pubapi</module>
|
|
</dispatch>
|
|
<dispatch>
|
|
<url>*/check</url>
|
|
<module>pubapi</module>
|
|
</dispatch>
|
|
</dispatch-entries>
|