Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 21 for 443 (0.41 sec)

  1. istioctl/pkg/writer/ztunnel/configdump/testdata/dump.json

          "namespace": "gateway-system",
          "hostname": "gateway-api-admission-server.gateway-system.svc.cluster.local",
          "vips": [
            "/10.96.115.16"
          ],
          "ports": {
            "443": 8443
          },
          "endpoints": {
            "Kubernetes//Pod/gateway-system/gateway-api-admission-server-85985d48ff-5jcvd:/10.244.2.8": {
    Json
    - Registered: Wed May 08 22:53:08 GMT 2024
    - Last Modified: Tue Apr 16 03:28:36 GMT 2024
    - 33.1K bytes
    - Viewed (0)
  2. okhttp/src/test/resources/web-platform-test-urltestdata.txt

    httpa://foo:80/  s:httpa p://foo:80/
    http://foo:-80/
    https://foo:443/  s:https h:foo p:/
    https://foo:80/  s:https h:foo port:80 p:/
    ftp://foo:21/  s:ftp h:foo p:/
    ftp://foo:80/  s:ftp h:foo port:80 p:/
    gopher://foo:70/  s:gopher h:foo p:/
    gopher://foo:443/  s:gopher h:foo port:443 p:/
    ws://foo:80/  s:ws h:foo p:/
    ws://foo:81/  s:ws h:foo port:81 p:/
    ws://foo:443/  s:ws h:foo port:443 p:/
    ws://foo:815/  s:ws h:foo port:815 p:/
    Plain Text
    - Registered: Fri May 03 11:42:14 GMT 2024
    - Last Modified: Wed Dec 20 23:27:07 GMT 2023
    - 14.3K bytes
    - Viewed (0)
  3. docs/ru/docs/deployment/https.md

    <img src="/img/deployment/https/https01.svg">
    
    ### Рукопожатие TLS
    
    В дальнейшем браузер будет взаимодействовать с этим IP-адресом через **port 443** (общепринятый номер порта для HTTPS).
    
    Первым шагом будет установление соединения между клиентом (браузером) и сервером и выбор криптографического ключа (для шифрования).
    
    <img src="/img/deployment/https/https02.svg">
    
    Plain Text
    - Registered: Sun May 05 07:19:11 GMT 2024
    - Last Modified: Wed Apr 03 16:22:47 GMT 2024
    - 20.6K bytes
    - Viewed (0)
  4. docs/de/docs/deployment/https.md

    <img src="/img/deployment/https/https01.svg">
    
    ### TLS-Handshake-Start
    
    Der Browser kommuniziert dann mit dieser IP-Adresse über **Port 443** (den HTTPS-Port).
    
    Der erste Teil der Kommunikation besteht lediglich darin, die Verbindung zwischen dem Client und dem Server herzustellen und die zu verwendenden kryptografischen Schlüssel usw. zu vereinbaren.
    
    Plain Text
    - Registered: Sun May 05 07:19:11 GMT 2024
    - Last Modified: Sat Mar 30 20:16:46 GMT 2024
    - 13.5K bytes
    - Viewed (0)
  5. docs/en/docs/deployment/https.md

    <img src="/img/deployment/https/https01.svg">
    
    ### TLS Handshake Start
    
    The browser would then communicate with that IP address on **port 443** (the HTTPS port).
    
    The first part of the communication is just to establish the connection between the client and the server and to decide the cryptographic keys they will use, etc.
    
    <img src="/img/deployment/https/https02.svg">
    Plain Text
    - Registered: Sun May 05 07:19:11 GMT 2024
    - Last Modified: Thu Jan 11 16:31:18 GMT 2024
    - 12K bytes
    - Viewed (0)
  6. istioctl/pkg/workload/workload_test.go

    		ports       map[string]uint32
    		want        string
    	}{
    		{
    			description: "test json marshal",
    			ports: map[string]uint32{
    				"HTTP":  80,
    				"HTTPS": 443,
    			},
    			want: `[{"name":"HTTP","containerPort":80,"protocol":""},{"name":"HTTPS","containerPort":443,"protocol":""}]`,
    		},
    	}
    	for i, c := range cases {
    		t.Run(fmt.Sprintf("case %d %s", i, c.description), func(t *testing.T) {
    Go
    - Registered: Wed May 08 22:53:08 GMT 2024
    - Last Modified: Wed Mar 27 16:59:05 GMT 2024
    - 14.6K bytes
    - Viewed (0)
  7. docs/zh/docs/deployment/https.md

    ### TLS 握手开始
    
    然后,浏览器将在**端口 443**(HTTPS 端口)上与该 IP 地址进行通信。
    
    通信的第一部分只是建立客户端和服务器之间的连接并决定它们将使用的加密密钥等。
    
    <img src="/img/deployment/https/https02.svg">
    
    客户端和服务器之间建立 TLS 连接的过程称为 **TLS 握手**。
    
    ### 带有 SNI 扩展的 TLS
    
    **服务器中只有一个进程**可以侦听特定 **IP 地址**的特定 **端口**。 可能有其他进程在同一 IP 地址的其他端口上侦听,但每个 IP 地址和端口组合只有一个进程。
    
    TLS (HTTPS) 默认使用端口`443`。 这就是我们需要的端口。
    
    由于只有一个进程可以监听此端口,因此监听端口的进程将是 **TLS 终止代理**。
    
    Plain Text
    - Registered: Sun May 05 07:19:11 GMT 2024
    - Last Modified: Tue Jan 09 15:38:25 GMT 2024
    - 10.6K bytes
    - Viewed (0)
  8. cmd/endpoint_test.go

    		// Erasure Single Drive
    		{"localhost:9000", []string{"http://localhost/d1"}, "", Endpoints{}, -1, fmt.Errorf("use path style endpoint for SD setup")},
    		{":443", []string{"/d1"}, ":443", Endpoints{Endpoint{URL: &url.URL{Path: mustAbs("/d1")}, IsLocal: true}}, ErasureSDSetupType, nil},
    Go
    - Registered: Sun May 05 19:28:20 GMT 2024
    - Last Modified: Sat Jan 13 07:53:03 GMT 2024
    - 18.9K bytes
    - Viewed (1)
  9. okhttp/src/test/java/okhttp3/CookiesTest.kt

                "CommentURL=\"http://google.com/\"; " +
                "Discard; " +
                "Domain=${urlWithIpAddress.host}; " +
                "Max-Age=60; " +
                "Path=\"/path\"; " +
                "Port=\"80,443,${server.port}\"; " +
                "Secure; " +
                "Version=\"1\"",
            )
            .build(),
        )
        get(urlWithIpAddress)
        val cookies = cookieManager.cookieStore.cookies
    Plain Text
    - Registered: Fri May 03 11:42:14 GMT 2024
    - Last Modified: Mon Jan 08 01:13:22 GMT 2024
    - 13K bytes
    - Viewed (0)
  10. cni/test/install_cni.go

    			CNIEventAddress:    cniEventAddr,
    			ZtunnelUDSAddress:  ztunnelAddr,
    			MountedCNINetDir:   tempCNIConfDir,
    			CNIBinSourceDir:    testBinDir,
    			CNIBinTargetDirs:   []string{tempCNIBinDir},
    			K8sServicePort:     "443",
    			K8sServiceHost:     "10.110.0.1",
    			MonitoringPort:     0,
    			LogUDSAddress:      "",
    			CNINetworkConfig:   cniNetworkConfig,
    			KubeconfigFilename: "ZZZ-istio-cni-kubeconfig",
    Go
    - Registered: Wed May 08 22:53:08 GMT 2024
    - Last Modified: Fri Jan 26 20:34:28 GMT 2024
    - 12.5K bytes
    - Viewed (0)
Back to top