Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 18 for Laud (0.14 sec)

  1. internal/grid/debug.go

    		manager, err := NewManager(ctx, ManagerOptions{
    			Dialer: dialer.DialContext,
    			Local:  host,
    			Hosts:  hosts,
    			AuthRequest: func(r *http.Request) error {
    				return nil
    			},
    			AddAuth:      func(aud string) string { return aud },
    			BlockConnect: ready,
    		})
    		if err != nil {
    			return nil, err
    		}
    		m := mux.NewRouter()
    		m.Handle(RoutePath, manager.Handler())
    		res.Managers = append(res.Managers, manager)
    Go
    - Registered: Sun Apr 07 19:28:10 GMT 2024
    - Last Modified: Thu Feb 08 18:15:27 GMT 2024
    - 4.2K bytes
    - Viewed (0)
  2. src/main/java/org/codelibs/fess/sso/oic/OpenIdConnectAuthenticator.java

                        case "email_verified":
                            attributes.put("email_verified", jsonParser.getText());
                            break;
                        case "aud":
                            attributes.put("aud", jsonParser.getText());
                            break;
                        case "iat":
                            attributes.put("iat", jsonParser.getText());
                            break;
    Java
    - Registered: Mon Apr 15 08:04:17 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 11.1K bytes
    - Viewed (0)
  3. manifests/charts/istiod-remote/values.yaml

        # Istiod is the default
        pilotCertProvider: istiod
        sds:
          # The JWT token for SDS and the aud field of such JWT. See RFC 7519, section 4.1.3.
          # When a CSR is sent from Istio Agent to the CA (e.g. Istiod), this aud is to make sure the
          # JWT is intended for the CA.
          token:
            aud: istio-ca
        sts:
          # The service port used by Security Token Service (STS) server to handle token exchange requests.
    Others
    - Registered: Wed Mar 20 22:53:08 GMT 2024
    - Last Modified: Mon Mar 11 16:58:23 GMT 2024
    - 19.6K bytes
    - Viewed (0)
  4. manifests/charts/istio-control/istio-discovery/values.yaml

        # Istiod is the default
        pilotCertProvider: istiod
    
        sds:
          # The JWT token for SDS and the aud field of such JWT. See RFC 7519, section 4.1.3.
          # When a CSR is sent from Istio Agent to the CA (e.g. Istiod), this aud is to make sure the
          # JWT is intended for the CA.
          token:
            aud: istio-ca
    
        sts:
    Others
    - Registered: Wed Mar 20 22:53:08 GMT 2024
    - Last Modified: Mon Mar 11 16:58:23 GMT 2024
    - 19.6K bytes
    - Viewed (0)
  5. manifests/charts/gateways/istio-egress/values.yaml

        # Istiod is the default
        pilotCertProvider: istiod
    
        sds:
          # The JWT token for SDS and the aud field of such JWT. See RFC 7519, section 4.1.3.
          # When a CSR is sent from Citadel Agent to the CA (e.g. Citadel), this aud is to make sure the
          # JWT is intended for the CA.
          token:
            aud: istio-ca
    
        sts:
    Others
    - Registered: Wed Apr 10 22:53:08 GMT 2024
    - Last Modified: Tue Feb 27 16:55:16 GMT 2024
    - 12.4K bytes
    - Viewed (0)
  6. manifests/charts/gateways/istio-ingress/values.yaml

        # Istiod is the default
        pilotCertProvider: istiod
    
        sds:
          # The JWT token for SDS and the aud field of such JWT. See RFC 7519, section 4.1.3.
          # When a CSR is sent from Citadel Agent to the CA (e.g. Citadel), this aud is to make sure the
          # JWT is intended for the CA.
          token:
            aud: istio-ca
    
        sts:
    Others
    - Registered: Wed Apr 10 22:53:08 GMT 2024
    - Last Modified: Tue Feb 27 16:55:16 GMT 2024
    - 13K bytes
    - Viewed (0)
  7. internal/grid/manager.go

    		if debugPrint {
    			fmt.Printf("handler: Got Connect Req %+v\n", cReq)
    		}
    		writeErr(remote.handleIncoming(ctx, conn, cReq))
    	}
    }
    
    // AuthFn should provide an authentication string for the given aud.
    type AuthFn func(aud string) string
    
    // Connection will return the connection for the specified host.
    // If the host does not exist nil will be returned.
    func (m *Manager) Connection(host string) *Connection {
    Go
    - Registered: Sun Apr 07 19:28:10 GMT 2024
    - Last Modified: Thu Apr 04 12:04:40 GMT 2024
    - 9.5K bytes
    - Viewed (0)
  8. manifests/charts/istio-control/istio-discovery/files/gateway-injection-template.yaml

      - name: istio-token
        projected:
          sources:
          - serviceAccountToken:
              path: istio-token
              expirationSeconds: 43200
              audience: {{ .Values.global.sds.token.aud }}
      {{- if eq .Values.global.pilotCertProvider "istiod" }}
      - name: istiod-ca-cert
        configMap:
          name: istio-ca-root-cert
      {{- end }}
      {{- if .Values.global.mountMtlsCerts }}
    Others
    - Registered: Wed Mar 20 22:53:08 GMT 2024
    - Last Modified: Tue Feb 27 16:55:16 GMT 2024
    - 8.6K bytes
    - Viewed (0)
  9. manifests/charts/istio-control/istio-discovery/templates/deployment.yaml

              medium: Memory
            name: local-certs
          - name: istio-token
            projected:
              sources:
                - serviceAccountToken:
                    audience: {{ .Values.global.sds.token.aud }}
                    expirationSeconds: 43200
                    path: istio-token
          # Optional: user-generated root
          - name: cacerts
            secret:
              secretName: cacerts
              optional: true
    Others
    - Registered: Wed Mar 20 22:53:08 GMT 2024
    - Last Modified: Thu Feb 29 19:22:34 GMT 2024
    - 8.3K bytes
    - Viewed (0)
  10. manifests/charts/istio-control/istio-discovery/files/grpc-agent.yaml

      - name: istio-token
        projected:
          sources:
          - serviceAccountToken:
              path: istio-token
              expirationSeconds: 43200
              audience: {{ .Values.global.sds.token.aud }}
      {{- if eq .Values.global.pilotCertProvider "istiod" }}
      - name: istiod-ca-cert
        configMap:
          name: istio-ca-root-cert
      {{- end }}
      {{- if .Values.global.mountMtlsCerts }}
    Others
    - Registered: Wed Mar 20 22:53:08 GMT 2024
    - Last Modified: Tue Feb 27 16:55:16 GMT 2024
    - 12.1K bytes
    - Viewed (0)
Back to top