]> git.gir.st - subscriptionfeed.git/blob - config/gunicorn-frontend-config.py
don't rely on calc(max()) css to get video to display
[subscriptionfeed.git] / config / gunicorn-frontend-config.py
1 # on which port to listen on (define 'keyfile' and 'certfile' for ssl):
2 bind = ['0.0.0.0:443']
3
4 accesslog = None
5 errorlog = "/tmp/frontend21.err"
6 workers = 1
7
8 # Note: if you don't have eventlet and 'gunicorn[eventlet]' installed, use
9 # gthread (below) instead.
10 worker_class = "eventlet"
11 worker_connections = 1000 # for eventlet, gevent
12
13 #worker_class = "gthread"
14 #threads = 40 # for gthread
15
16 certfile = "/etc/letsencrypt/live/subscriptions.gir.st/fullchain.pem"
17 keyfile = "/etc/letsencrypt/live/subscriptions.gir.st/privkey.pem"
Imprint / Impressum