-
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathgunicorn.conf.py.dist
More file actions
21 lines (19 loc) · 775 Bytes
/
Copy pathgunicorn.conf.py.dist
File metadata and controls
21 lines (19 loc) · 775 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
# Copyright (c) 2018-2026 Linh Pham
# stats.wwdt.me is released under the terms of the Apache License 2.0
# SPDX-License-Identifier: Apache-2.0
#
# vim: set noai syntax=python ts=4 sw=4:
"""Gunicorn Configuration File."""
# Make a copy of this file and name it `gunicorn.conf.py` in order
# for it to be picked up by Gunicorn upon startup. Update any of
# the settings below with the appropriate values for the environment
# this application will be running in.
#
# For more information, on what configuration settings are available,
# refer to the Gunicorn documentation site at:
# https://docs.gunicorn.org/en/stable/settings.html#config-file
bind = "unix:/tmp/gunicorn-wwdtmstats.sock"
workers = 4
accesslog = "_log/access.log"
errorlog = "_log/error.log"
umask = 0o007