A semantic search engine for source code https://bitshift.benkurtovic.com/
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

gunicorn.cfg 211 B

123456789
  1. # Configuration file for Gunicorn
  2. # http://docs.gunicorn.org/en/latest/configure.html
  3. bind = ["unix:/tmp/gunicorn.sock"]
  4. workers = 4
  5. accesslog = "logs/access.log"
  6. errorlog = "logs/error.log"
  7. loglevel = "info"