mirror of
https://github.com/PostHog/posthog.git
synced 2024-11-24 18:07:17 +01:00
3ef42ddd38
* Add docker image that uses nginx unit instead of gunicorn 🦄🔫 * Add unit build to CI * Fix duplicate id * try 3.11 * Only build for amd64 need python3.11 for unit image on arm
17 lines
329 B
JSON
17 lines
329 B
JSON
{
|
|
"listeners": {
|
|
"*:8000": {
|
|
"pass": "applications/posthog"
|
|
}
|
|
},
|
|
"applications": {
|
|
"posthog": {
|
|
"type": "python 3.10",
|
|
"processes": 1,
|
|
"working_directory": "/code",
|
|
"path": ".",
|
|
"module": "posthog.wsgi"
|
|
}
|
|
}
|
|
}
|