A semantic search engine for source code https://bitshift.benkurtovic.com/
25개 이상의 토픽을 선택하실 수 없습니다. Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

11 lines
214 B

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