- Sort Score
- Num 10 results
- Language All
Results 11 - 20 of 291 for uvicorn (0.05 seconds)
-
docs/pt/docs/deployment/manually.md
Existem diversas alternativas, incluindo: * [Uvicorn](https://www.uvicorn.dev/): um servidor ASGI de alta performance. * [Hypercorn](https://hypercorn.readthedocs.io/): um servidor ASGI compatível com HTTP/2, Trio e outros recursos.
Created: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Thu Mar 19 18:20:43 GMT 2026 - 7.1K bytes - Click Count (0) -
docs/zh-hant/docs/advanced/behind-a-proxy.md
因此,它不會預期被以 `http://127.0.0.1:8000/api/v1/app` 的方式存取。 Uvicorn 會預期代理以 `http://127.0.0.1:8000/app` 來存取 Uvicorn,而由代理負責在上層加上額外的 `/api/v1` 前綴。 ## 關於「移除路徑前綴」的代理 { #about-proxies-with-a-stripped-path-prefix } 請記住,具有「移除路徑前綴」的代理只是其中一種設定方式。 在許多情況下,預設可能是不移除路徑前綴。Created: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Fri Mar 20 17:05:38 GMT 2026 - 15.3K bytes - Click Count (0) -
docs/zh/docs/advanced/behind-a-proxy.md
``` 因此,它不会期望被访问于 `http://127.0.0.1:8000/api/v1/app`。 Uvicorn 会期望代理以 `http://127.0.0.1:8000/app` 访问 Uvicorn,而在顶部额外添加 `/api/v1` 前缀是代理的职责。 ## 关于移除路径前缀的代理 { #about-proxies-with-a-stripped-path-prefix } 请记住,移除路径前缀只是配置代理的一种方式。 在很多情况下,默认是代理不会移除路径前缀。Created: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Fri Mar 20 17:06:37 GMT 2026 - 15.1K bytes - Click Count (0) -
docs/ja/docs/deployment/manually.md
リモートのサーバーマシンで **FastAPI** アプリケーション(や他の ASGI アプリケーション)を実行するのに主に必要なのは **Uvicorn** のような ASGI サーバープログラムです。これは `fastapi` コマンドにデフォルトで含まれています。 他にもいくつかの選択肢があります: * [Uvicorn](https://www.uvicorn.dev/): 高性能な ASGI サーバー。 * [Hypercorn](https://hypercorn.readthedocs.io/): HTTP/2 や Trio に対応する ASGI サーバーなど。
Created: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Fri Mar 20 14:07:17 GMT 2026 - 7.8K bytes - Click Count (0) -
docs/en/docs/deployment/server-workers.md
Created: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Thu Mar 05 18:13:19 GMT 2026 - 8.2K bytes - Click Count (0) -
docs/en/docs/deployment/manually.md
The main thing you need to run a **FastAPI** application (or any other ASGI application) in a remote server machine is an ASGI server program like **Uvicorn**, this is the one that comes by default in the `fastapi` command. There are several alternatives, including: * [Uvicorn](https://www.uvicorn.dev/): a high performance ASGI server. * [Hypercorn](https://hypercorn.readthedocs.io/): an ASGI server compatible with HTTP/2 and Trio among other features.
Created: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Thu Mar 05 18:13:19 GMT 2026 - 6.7K bytes - Click Count (0) -
docs/es/docs/deployment/manually.md
Hay varias alternativas, incluyendo: * [Uvicorn](https://www.uvicorn.dev/): un servidor ASGI de alto rendimiento.
Created: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Thu Mar 19 18:15:55 GMT 2026 - 7K bytes - Click Count (0) -
docs/en/docs/advanced/behind-a-proxy.md
### Providing the `root_path` { #providing-the-root-path } To achieve this, you can use the command line option `--root-path` like: <div class="termy"> ```console $ fastapi run main.py --forwarded-allow-ips="*" --root-path /api/v1Created: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Thu Mar 05 18:13:19 GMT 2026 - 15.8K bytes - Click Count (0) -
docs/zh-hant/docs/deployment/manually.md
FastAPI 採用建立 Python 網頁框架與伺服器的標準 <abbr title="Asynchronous Server Gateway Interface - 非同步伺服器閘道介面">ASGI</abbr>。FastAPI 是一個 ASGI 網頁框架。 在遠端伺服器機器上執行 FastAPI 應用(或任何 ASGI 應用)所需的關鍵是 ASGI 伺服器程式,例如 Uvicorn;`fastapi` 指令預設就是使用它。 有數個替代方案,包括: * [Uvicorn](https://www.uvicorn.dev/):高效能 ASGI 伺服器。 * [Hypercorn](https://hypercorn.readthedocs.io/):支援 HTTP/2 與 Trio 等功能的 ASGI 伺服器。 * [Daphne](https://github.com/django/daphne):為 Django Channels 打造的 ASGI 伺服器。
Created: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Fri Mar 20 17:05:38 GMT 2026 - 6.2K bytes - Click Count (0) -
docs/zh/docs/deployment/manually.md
例如,要安装 Uvicorn,可以运行以下命令: <div class="termy"> ```console $ pip install "uvicorn[standard]" ---> 100% ``` </div> 类似的流程也适用于任何其他 ASGI 服务器程序。 /// tip | 提示 通过添加 `standard` 选项,Uvicorn 将安装并使用一些推荐的额外依赖项。 其中包括 `uvloop`,这是 `asyncio` 的高性能替代方案,能够显著提升并发性能。 当您使用 `pip install "fastapi[standard]"` 安装 FastAPI 时,实际上也会安装 `uvicorn[standard]`。 /// ## 运行服务器程序 { #run-the-server-program }
Created: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Fri Mar 20 17:06:37 GMT 2026 - 6.7K bytes - Click Count (0)