Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 46 for _proxy_ (0.04 sec)

  1. docs/pt/docs/advanced/behind-a-proxy.md

    ```mermaid
    sequenceDiagram
        participant Client
        participant Proxy as Proxy/Load Balancer
        participant Server as FastAPI Server
    
        Client->>Proxy: HTTPS Request<br/>Host: mysuperapp.com<br/>Path: /items
    
        Note over Proxy: Proxy adds forwarded headers
    
    Registered: Sun Dec 28 07:19:09 UTC 2025
    - Last Modified: Wed Dec 17 20:41:43 UTC 2025
    - 17.2K bytes
    - Viewed (0)
  2. docs/de/docs/advanced/behind-a-proxy.md

    # Hinter einem Proxy { #behind-a-proxy }
    
    In vielen Situationen würden Sie einen **Proxy** wie Traefik oder Nginx vor Ihrer FastAPI-App verwenden.
    
    Diese Proxys könnten HTTPS-Zertifikate und andere Dinge handhaben.
    
    ## Proxy-<abbr title="weitergeleitete Header">Forwarded-Header</abbr> { #proxy-forwarded-headers }
    
    Registered: Sun Dec 28 07:19:09 UTC 2025
    - Last Modified: Wed Dec 17 20:41:43 UTC 2025
    - 18.6K bytes
    - Viewed (0)
  3. docs/es/docs/advanced/behind-a-proxy.md

    ```mermaid
    sequenceDiagram
        participant Client as Cliente
        participant Proxy as Proxy/Load Balancer
        participant Server as Servidor de FastAPI
    
        Client->>Proxy: HTTPS Request<br/>Host: mysuperapp.com<br/>Path: /items
    
        Note over Proxy: El proxy añade headers reenviados
    
    Registered: Sun Dec 28 07:19:09 UTC 2025
    - Last Modified: Wed Dec 17 20:41:43 UTC 2025
    - 17.1K bytes
    - Viewed (0)
  4. docs/en/docs/advanced/behind-a-proxy.md

    # Behind a Proxy { #behind-a-proxy }
    
    In many situations, you would use a **proxy** like Traefik or Nginx in front of your FastAPI app.
    
    These proxies could handle HTTPS certificates and other things.
    
    ## Proxy Forwarded Headers { #proxy-forwarded-headers }
    
    Registered: Sun Dec 28 07:19:09 UTC 2025
    - Last Modified: Wed Dec 17 20:41:43 UTC 2025
    - 16.4K bytes
    - Viewed (0)
  5. docs/ru/docs/advanced/behind-a-proxy.md

    ```mermaid
    sequenceDiagram
        participant Client as Клиент
        participant Proxy as Прокси/Балансировщик нагрузки
        participant Server as FastAPI-сервер
    
        Client->>Proxy: HTTPS-запрос<br/>Host: mysuperapp.com<br/>Path: /items
    
        Note over Proxy: Прокси-сервер добавляет пересылаемые заголовки
    
    Registered: Sun Dec 28 07:19:09 UTC 2025
    - Last Modified: Wed Dec 17 20:41:43 UTC 2025
    - 23.2K bytes
    - Viewed (0)
  6. docs/de/docs/project-generation.md

    - 📫 E-Mail-basierte Passwortwiederherstellung.
    - ✅ Tests mit [Pytest](https://pytest.org).
    - 📞 [Traefik](https://traefik.io) als Reverse-Proxy / Load Balancer.
    - 🚢 Deployment-Anleitungen unter Verwendung von Docker Compose, einschließlich der Einrichtung eines Frontend-Traefik-Proxys zur Handhabung automatischer HTTPS-Zertifikate.
    Registered: Sun Dec 28 07:19:09 UTC 2025
    - Last Modified: Wed Dec 17 20:41:43 UTC 2025
    - 2.2K bytes
    - Viewed (0)
  7. docs/es/docs/deployment/https.md

    Todo este proceso de renovación, mientras aún se sirve la aplicación, es una de las principales razones por las que querrías tener un **sistema separado para gestionar el HTTPS** con un TLS Termination Proxy en lugar de simplemente usar los certificados TLS con el servidor de aplicaciones directamente (por ejemplo, Uvicorn).
    
    ## Headers reenviados por el proxy { #proxy-forwarded-headers }
    
    Registered: Sun Dec 28 07:19:09 UTC 2025
    - Last Modified: Tue Dec 16 16:33:45 UTC 2025
    - 15.4K bytes
    - Viewed (0)
  8. compat/maven-compat/src/main/java/org/apache/maven/repository/legacy/DefaultUpdateCheckManager.java

            Proxy proxy = repository.getProxy();
            if (proxy != null) {
                if (proxy.getUserName() != null) {
                    int hash = (proxy.getUserName() + proxy.getPassword()).hashCode();
                    buffer.append(hash).append('@');
                }
                buffer.append(proxy.getHost()).append(':').append(proxy.getPort()).append('>');
            }
    
    Registered: Sun Dec 28 03:35:09 UTC 2025
    - Last Modified: Tue Dec 16 13:41:14 UTC 2025
    - 9.4K bytes
    - Viewed (0)
  9. docs/en/docs/advanced/wsgi.md

    # Including WSGI - Flask, Django, others { #including-wsgi-flask-django-others }
    
    You can mount WSGI applications as you saw with [Sub Applications - Mounts](sub-applications.md){.internal-link target=_blank}, [Behind a Proxy](behind-a-proxy.md){.internal-link target=_blank}.
    
    For that, you can use the `WSGIMiddleware` and use it to wrap your WSGI application, for example, Flask, Django, etc.
    
    ## Using `WSGIMiddleware` { #using-wsgimiddleware }
    
    Registered: Sun Dec 28 07:19:09 UTC 2025
    - Last Modified: Wed Dec 17 20:41:43 UTC 2025
    - 1.2K bytes
    - Viewed (0)
  10. docs/pt/docs/advanced/wsgi.md

    # Adicionando WSGI - Flask, Django, entre outros { #including-wsgi-flask-django-others }
    
    Como você viu em [Subaplicações - Montagens](sub-applications.md){.internal-link target=_blank} e [Atrás de um Proxy](behind-a-proxy.md){.internal-link target=_blank}, você pode montar aplicações WSGI.
    
    Para isso, você pode utilizar o `WSGIMiddleware` para encapsular a sua aplicação WSGI, como por exemplo Flask, Django, etc.
    
    ## Usando `WSGIMiddleware` { #using-wsgimiddleware }
    
    Registered: Sun Dec 28 07:19:09 UTC 2025
    - Last Modified: Wed Dec 17 20:41:43 UTC 2025
    - 1.2K bytes
    - Viewed (0)
Back to top