Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 264 for subdomains (0.2 sec)

  1. pkg/config/host/name_test.go

    			"foo.com", "bar.com", false,
    		},
    
    		{
    			"domain does not match subdomain",
    			"bar.foo.com", "foo.com", false,
    		},
    		{
    			"domain does not match subdomain - order doesn't matter",
    			"foo.com", "bar.foo.com", false,
    		},
    
    		{
    			"wildcard matches subdomains",
    			"*.com", "foo.com", true,
    		},
    		{
    			"wildcard matches subdomains",
    			"*.com", "bar.com", true,
    		},
    		{
    			"wildcard matches subdomains",
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 29 15:57:39 UTC 2022
    - 4.7K bytes
    - Viewed (0)
  2. staging/src/k8s.io/apiserver/pkg/apis/audit/validation/validation.go

    	var allErrs field.ErrorList
    	for _, groupResource := range groupResources {
    		// The empty string represents the core API group.
    		if len(groupResource.Group) != 0 {
    			// Group names must be lower case and be valid DNS subdomains.
    			// reference: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md
    			// an error is returned for group name like rbac.authorization.k8s.io/v1beta1
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Feb 15 14:13:07 UTC 2019
    - 4.6K bytes
    - Viewed (0)
  3. docs/en/docs/advanced/middleware.md

    ```
    
    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)
  4. okhttp/src/main/kotlin/okhttp3/Cookie.kt

        /**
         * Set the domain pattern for this cookie. The cookie will match [domain] and all of its
         * subdomains.
         */
        fun domain(domain: String): Builder = domain(domain, false)
    
        /**
         * Set the host-only domain for this cookie. The cookie will match [domain] but none of
         * its subdomains.
         */
        fun hostOnlyDomain(domain: String): Builder = domain(domain, true)
    
        private fun domain(
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Sat Apr 06 04:12:05 UTC 2024
    - 23.1K bytes
    - Viewed (0)
  5. pkg/apis/core/validation/names.go

    	if len(domainLabels) < 2 {
    		el = append(el, field.Invalid(fldPath, segments[0], "should be a domain with at least two segments separated by dots"))
    	}
    
    	// validate that segments[1] consists of valid DNS1123 subdomains separated by '.'.
    	pathLabels := strings.Split(segments[1], ".")
    	for _, lbl := range pathLabels {
    		// use IsDNS1123Subdomain because it enforces a length restriction of 253 characters
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Nov 03 18:40:48 UTC 2023
    - 5.5K bytes
    - Viewed (0)
  6. src/vendor/golang.org/x/net/http/httpproxy/proxy.go

    	// An IP address prefix and domain name can also include a literal port
    	// number (1.2.3.4:80).
    	// A domain name matches that name and all subdomains. A domain name with
    	// a leading "." matches subdomains only. For example "foo.com" matches
    	// "foo.com" and "bar.foo.com"; ".y.com" matches "x.y.com" but not "y.com".
    	// A single asterisk (*) indicates that no proxying should be done.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Mar 09 00:09:40 UTC 2024
    - 10K bytes
    - Viewed (0)
  7. docs/de/docs/advanced/middleware.md

    ```
    
    Die folgenden Argumente werden unterstützt:
    
    * `allowed_hosts` – Eine Liste von Domain-Namen, die als Hostnamen zulässig sein sollten. Wildcard-Domains wie `*.example.com` werden unterstützt, um Subdomains zu matchen. Um jeden Hostnamen zu erlauben, verwenden Sie entweder `allowed_hosts=["*"]` oder lassen Sie diese Middleware weg.
    
    Wenn ein eingehender Request nicht korrekt validiert wird, wird eine „400“-Response gesendet.
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Sat Mar 30 20:18:15 UTC 2024
    - 4.4K bytes
    - Viewed (0)
  8. releasenotes/README.md

      When validating TLS certificates, Envoy incorrectly allows a wildcard DNS Subject Alternative Name to apply to multiple subdomains. For example, with a SAN of `*.example.com`, Envoy incorrectly allows `nested.subdomain.example.com`, when it should only allow `subdomain.example.com`.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Feb 09 20:31:49 UTC 2021
    - 5.1K bytes
    - Viewed (0)
  9. src/crypto/x509/name_constraints_test.go

    	},
    
    	// #6: .example.com matches subdomains.
    	{
    		roots: make([]constraintsSpec, 1),
    		intermediates: [][]constraintsSpec{
    			{
    				{
    					ok: []string{"dns:.example.com"},
    				},
    			},
    		},
    		leaf: leafSpec{
    			sans: []string{"dns:foo.example.com"},
    		},
    	},
    
    	// #7: .example.com matches multiple levels of subdomains
    	{
    		roots: []constraintsSpec{
    			{
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 09 22:40:21 UTC 2024
    - 45.2K bytes
    - Viewed (0)
  10. okhttp-tls/README.md

    many as necessary with `addSubjectAlternativeName()`. This mechanism also supports a very limited
    form of wildcards `*.example.com` where the `*` must be first and doesn't match nested subdomains.
    
    By default certificates use fast and secure 256-bit ECDSA keys. For interoperability with very old
    clients use `HeldCertificate.Builder.rsa2048()`.
    
    Download
    --------
    
    ```kotlin
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Sun Dec 17 15:34:10 UTC 2023
    - 9.1K bytes
    - Viewed (0)
Back to top