新增wiki命令文件

This commit is contained in:
2026-04-14 16:02:50 +08:00
parent 65803c911d
commit c6e3d3c5db
485 changed files with 12578 additions and 396 deletions

19
wiki/entities/Gunicorn.md Normal file
View File

@@ -0,0 +1,19 @@
---
title: "Gunicorn"
type: entity
tags: [wsgi-server, python, deployment]
sources: [tiktok-pm-python-django-project.md]
last_updated: 2026-04-14
---
## Definition
GunicornGreen Unicorn是一个Python WSGI HTTP服务器用于在生产环境中运行Python Web应用。
## Role in TikTok PM Project
- 作为Django应用的WSGI服务器
- 在Docker容器中运行
- 监听8000端口
## Connections
- [[Gunicorn]] ← runs ← [[Django]]
- [[Gunicorn]] ← proxied_by ← [[Nginx]]