gs*, gt*, gu*, gv*, gxl2gv, gyb, gzip: add Korean translation (#14435)

Co-authored-by: Sebastiaan Speck <12570668+sebastiaanspeck@users.noreply.github.com>
This commit is contained in:
HoJeong Im
2024-10-31 01:15:35 +09:00
committed by GitHub
parent 2a2967dbc8
commit 470d06c155
19 changed files with 412 additions and 0 deletions

View File

@@ -0,0 +1,28 @@
# gunicorn
> Python WSGI HTTP 서버.
> 더 많은 정보: <https://gunicorn.org/>.
- Python 웹 애플리케이션 실행:
`gunicorn {{import.path:app_object}}`
- localhost의 포트 8080에서 수신 대기:
`gunicorn --bind {{localhost}}:{{8080}} {{import.path:app_object}}`
- 실시간 새로고침을 켜기:
`gunicorn --reload {{import.path:app_object}}`
- 요청 처리를 위해 4개의 작업자 프로세스를 사용:
`gunicorn --workers {{4}} {{import.path:app_object}}`
- 요청 처리를 위해 4개의 작업자 스레드를 사용:
`gunicorn --threads {{4}} {{import.path:app_object}}`
- Run app over HTTPS를 통해 애플리케이션을 실행:
`gunicorn --certfile {{cert.pem}} --keyfile {{key.pem}} {{import.path:app_object}}`