Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 580 for hostnames (0.22 sec)

  1. pilot/pkg/networking/core/name_table.go

    import (
    	"istio.io/istio/pilot/pkg/features"
    	"istio.io/istio/pilot/pkg/model"
    	dnsProto "istio.io/istio/pkg/dns/proto"
    	dnsServer "istio.io/istio/pkg/dns/server"
    )
    
    // BuildNameTable produces a table of hostnames and their associated IPs that can then
    // be used by the agent to resolve DNS. This logic is always active. However, local DNS resolution
    // will only be effective if DNS capture is enabled in the proxy
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Mar 28 17:09:02 UTC 2024
    - 1.4K bytes
    - Viewed (0)
  2. releasenotes/notes/route-collapse.yaml

    area: traffic-management
    issue:
    - 28659
    releaseNotes:
    - |
      **Optimized** generated routing configuration to merge virtual hosts with the same routing configuration. This improves performance for Virtual Services with multiple hostnames defined.
    
    upgradeNotes:
    - title: EnvoyFilter `match.routeConfiguration.vhost.name` semantics change
      content: |
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 02 16:10:04 UTC 2021
    - 1.1K bytes
    - Viewed (0)
  3. pilot/pkg/config/kube/gateway/testdata/mesh.yaml

    apiVersion: gateway.networking.k8s.io/v1beta1
    kind: Gateway
    metadata:
      name: gateway
      namespace: istio-system
    spec:
      addresses:
      - value: istio-ingressgateway
        type: Hostname
      gatewayClassName: istio
      listeners:
      - name: default
        hostname: "*.example.com"
        port: 80
        protocol: HTTP
        allowedRoutes:
          namespaces:
            from: All
    ---
    apiVersion: gateway.networking.k8s.io/v1beta1
    kind: HTTPRoute
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Oct 18 22:43:39 UTC 2023
    - 2.9K bytes
    - Viewed (0)
  4. security/tools/generate_csr/main.go

    package main
    
    import (
    	"flag"
    	"fmt"
    	"os"
    
    	"istio.io/istio/pkg/log"
    	"istio.io/istio/security/pkg/pki/util"
    )
    
    var (
    	host    = flag.String("host", "", "Comma-separated hostnames and IPs to generate a certificate for.")
    	org     = flag.String("organization", "Juju org", "Organization for the cert.")
    	outCsr  = flag.String("out-csr", "csr.pem", "Output csr file.")
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 23 17:08:31 UTC 2023
    - 2.1K bytes
    - Viewed (0)
  5. pilot/pkg/config/kube/gateway/testdata/route-precedence.status.yaml.golden

    kind: HTTPRoute
    metadata:
      creationTimestamp: null
      name: http
      namespace: default
    spec: null
    status:
      parents:
      - conditions:
        - lastTransitionTime: fake
          message: hostnames matched parent hostname "*.domain.example", but namespace
            "default" is not allowed by the parent
          reason: NotAllowedByListeners
          status: "False"
          type: Accepted
        - lastTransitionTime: fake
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Feb 07 20:48:23 UTC 2024
    - 4.6K bytes
    - Viewed (0)
  6. docs/en/docs/advanced/middleware.md

    {!../../../docs_src/advanced_middleware/tutorial002.py!}
    ```
    
    The following arguments are supported:
    
    * `allowed_hosts` - A list of domain names that should be allowed as hostnames. Wildcard domains such as `*.example.com` are supported for matching subdomains. To allow any hostname either use `allowed_hosts=["*"]` or omit the middleware.
    
    If an incoming request does not validate correctly then a `400` response will be sent.
    
    ## `GZipMiddleware`
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Fri Mar 10 18:27:10 UTC 2023
    - 4K bytes
    - Viewed (0)
  7. mockwebserver/src/test/java/mockwebserver3/MockResponseSniTest.kt

        assertThat(response.isSuccessful).isTrue()
    
        val recordedRequest = server.takeRequest()
        assertThat(recordedRequest.handshakeServerNames).containsExactly(url.host)
      }
    
      /**
       * Use different hostnames for the TLS handshake (including SNI) and the HTTP request (in the
       * Host header).
       */
      @Test
      fun domainFronting() {
        val heldCertificate =
          HeldCertificate.Builder()
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Jan 08 01:13:22 UTC 2024
    - 5.9K bytes
    - Viewed (0)
  8. okhttp/src/test/java/okhttp3/internal/HostnamesTest.kt

        assertThat(
          "0:0:0:0:0:FFFF:129.144.52.38".toCanonicalHost(),
        ).isEqualTo("129.144.52.38")
    
        assertThat("::FFFF:129.144.52.38".toCanonicalHost()).isEqualTo("129.144.52.38")
    
        // Hostnames
        assertThat("WwW.GoOgLe.cOm".toCanonicalHost()).isEqualTo("www.google.com")
        assertThat("localhost".toCanonicalHost()).isEqualTo("localhost")
        assertThat("☃.net".toCanonicalHost()).isEqualTo("xn--n3h.net")
    
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Tue Jan 30 06:23:33 UTC 2024
    - 5.1K bytes
    - Viewed (0)
  9. pilot/pkg/networking/core/configgen.go

    	BuildHTTPRoutes(node *model.Proxy, req *model.PushRequest, routeNames []string) ([]*discovery.Resource, model.XdsLogDetails)
    
    	// BuildNameTable returns list of hostnames and the associated IPs
    	BuildNameTable(node *model.Proxy, push *model.PushContext) *dnsProto.NameTable
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Mar 28 17:09:02 UTC 2024
    - 3.1K bytes
    - Viewed (0)
  10. pilot/pkg/config/kube/gateway/testdata/http.status.yaml.golden

    metadata:
      creationTimestamp: null
      name: http-not-selected
      namespace: default
    spec: null
    status:
      parents:
      - conditions:
        - lastTransitionTime: fake
          message: no hostnames matched parent hostname "*.domain.example"
          reason: NoMatchingListenerHostname
          status: "False"
          type: Accepted
        - lastTransitionTime: fake
          message: All references resolved
          reason: ResolvedRefs
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Feb 07 20:48:23 UTC 2024
    - 6.7K bytes
    - Viewed (0)
Back to top