Browse Source

🌐 Add Korean translation for `docs/ko/docs/advanced/wsgi.md` (#12659)

pull/12656/merge
Chol_rang 5 months ago
committed by GitHub
parent
commit
14b087cd36
No known key found for this signature in database GPG Key ID: B5690EEEBB952194
  1. 37
      docs/ko/docs/advanced/wsgi.md

37
docs/ko/docs/advanced/wsgi.md

@ -0,0 +1,37 @@
# WSGI 포함하기 - Flask, Django 그 외
[서브 응용 프로그램 - 마운트](sub-applications.md){.internal-link target=_blank}, [프록시 뒤편에서](behind-a-proxy.md){.internal-link target=_blank}에서 보았듯이 WSGI 응용 프로그램들을 다음과 같이 마운트 할 수 있습니다.
`WSGIMiddleware`를 사용하여 WSGI 응용 프로그램(예: Flask, Django 등)을 감쌀 수 있습니다.
## `WSGIMiddleware` 사용하기
`WSGIMiddleware`를 불러와야 합니다.
그런 다음, WSGI(예: Flask) 응용 프로그램을 미들웨어로 포장합니다.
그 후, 해당 경로에 마운트합니다.
```Python hl_lines="2-3 23"
{!../../docs_src/wsgi/tutorial001.py!}
```
## 확인하기
이제 `/v1/` 경로에 있는 모든 요청은 Flask 응용 프로그램에서 처리됩니다.
그리고 나머지는 **FastAPI**에 의해 처리됩니다.
실행하면 <a href="http://localhost:8000/v1/" class="external-link" target="_blank">http://localhost:8000/v1/</a>으로 이동해서 Flask의 응답을 볼 수 있습니다:
```txt
Hello, World from Flask!
```
그리고 다음으로 이동하면 <a href="http://localhost:8000/v2" class="external-link" target="_blank">http://localhost:8000/v2</a> Flask의 응답을 볼 수 있습니다:
```JSON
{
"message": "Hello World"
}
```
Loading…
Cancel
Save