Advertisement
Guest User

Untitled

a guest
Feb 11th, 2016
182
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.28 KB | None | 0 0
  1. ServerRoot "/home/yohan8/webapps/yohan_website/apache2"
  2.  
  3. LoadModule authz_core_module modules/mod_authz_core.so
  4. LoadModule dir_module modules/mod_dir.so
  5. LoadModule env_module modules/mod_env.so
  6. LoadModule log_config_module modules/mod_log_config.so
  7. LoadModule mime_module modules/mod_mime.so
  8. LoadModule rewrite_module modules/mod_rewrite.so
  9. LoadModule setenvif_module modules/mod_setenvif.so
  10. LoadModule wsgi_module modules/mod_wsgi.so
  11. LoadModule unixd_module modules/mod_unixd.so
  12.  
  13. LogFormat "%{X-Forwarded-For}i %l %u %t \"%r\" %>s %b \"%{Referer}i\" \"%{User-Agent}i\"" combined
  14. CustomLog /home/yohan8/logs/user/access_yohan_website.log combined
  15. ErrorLog /home/yohan8/logs/user/error_yohan_website.log
  16.  
  17. Listen 31786
  18. KeepAlive Off
  19. SetEnvIf X-Forwarded-SSL on HTTPS=1
  20. ServerLimit 1
  21. StartServers 1
  22. MaxRequestWorkers 5
  23. MinSpareThreads 1
  24. MaxSpareThreads 3
  25. ThreadsPerChild 5
  26.  
  27. WSGIDaemonProcess yohan_website processes=2 threads=12 python-path=/home/yohan8/webapps/yohan_website:/home/yohan8/webapps/yohan_website/website_yohan:/home/yohan8/webapps/yohan_website/lib/python3.4
  28. WSGIProcessGroup yohan_website
  29. WSGIRestrictEmbedded On
  30. WSGILazyInitialization On
  31. WSGIScriptAlias / /home/yohan8/webapps/yohan_website/website_yohan/website_yohan/wsgi.py
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement