(mut self, sans: I)
| 690 | /// enable service subdomains. |
| 691 | #[must_use] |
| 692 | pub fn with_server_sans<I, S>(mut self, sans: I) -> Self |
| 693 | where |
| 694 | I: IntoIterator<Item = S>, |
| 695 | S: Into<String>, |
| 696 | { |
| 697 | self.service_routing.base_domains = service_routing_domains_from_server_sans(sans); |
| 698 | self |
| 699 | } |
| 700 | |
| 701 | /// Enable or disable plaintext HTTP routing for loopback sandbox service |
| 702 | /// hostnames on TLS-enabled gateway listeners. |