From 3d5c0c6c733d672d48af0d8fae7b73caa5705a64 Mon Sep 17 00:00:00 2001 From: Christian Lawson-Perfect Date: Fri, 26 Apr 2024 08:18:43 +0000 Subject: [PATCH] add gunicorn.conf.py.dist --- gunicorn.conf.py.dist | 6 ++++++ 1 file changed, 6 insertions(+) create mode 100644 gunicorn.conf.py.dist diff --git a/gunicorn.conf.py.dist b/gunicorn.conf.py.dist new file mode 100644 index 0000000..b0bec6b --- /dev/null +++ b/gunicorn.conf.py.dist @@ -0,0 +1,6 @@ +bind = "unix:/run/think_something.sock" +workers = 1 +accesslog = "/var/log/gunicorn/think.somethingorotherwhatever.com.access.log" +errorlog = "/var/log/gunicorn/think.somethingorotherwhatever.com.error.log" +capture_output = True +loglevel = "info"