Advertisement
Guest User

Untitled

a guest
Nov 26th, 2014
143
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.44 KB | None | 0 0
  1. [uwsgi]
  2. #application's base folder
  3. base = /var/www/revyouws
  4.  
  5. #python module to import
  6. app = revyouws
  7. module = %(app)
  8.  
  9. home = %(base)/venv
  10. pythonpath = %(base)
  11.  
  12. #socket file's location
  13. socket = /var/www/revyouws/%n.sock
  14.  
  15. #permissions for the socket file
  16. chmod-socket = 666
  17.  
  18. #the variable that holds a flask application inside the module imported at line #6
  19. callable = app
  20.  
  21. #location of log files
  22. logto = /var/log/uwsgi/%n.log
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement