This is a full print out of my Virtual Host right now: <VirtualHost 107.161.18.131:80> ServerName fina.dev.harwoodspike.com ServerAlias www.fina.dev.harwoodspike.com DocumentRoot /home/devharwoodspike/fina.dev.harwoodspike.com ServerAdmin [email protected] UseCanonicalName Off CustomLog /etc/apache2/logs/domlogs/fina.dev.harwoodspike.com combined <IfModule log_config_module> <IfModule logio_module> CustomLog /etc/apache2/logs/domlogs/fina.dev.harwoodspike.com-bytes_log "%{%s}t %I .\n%{%s}t %O ." </IfModule> </IfModule> ## User devharwoodspike # Needed for Cpanel::ApacheConf <IfModule userdir_module> <IfModule !mpm_itk.c> <IfModule !ruid2_module> UserDir enabled </IfModule> </IfModule> </IfModule>
# Enable backwards compatible Server Side Include expression parser for Apache versions >= 2.4. # To selectively use the newer Apache 2.4 expression parser, disable SSILegacyExprParser in # the user's .htaccess file. For more information, please read: # http://httpd.apache.org/docs/2.4/mod/mod_include.html#ssilegacyexprparser <IfModule include_module> <Directory "/home/devharwoodspike/fina.dev.harwoodspike.com"> SSILegacyExprParser On </Directory> </IfModule> <IfModule suphp_module> suPHP_UserGroup devharwoodspike devharwoodspike </IfModule> <IfModule suexec_module> <IfModule !mod_ruid2.c> SuexecUserGroup devharwoodspike devharwoodspike </IfModule> </IfModule> <IfModule ruid2_module> RMode config RUidGid devharwoodspike devharwoodspike </IfModule> <IfModule mpm_itk.c> # For more information on MPM ITK, please read: # http://mpm-itk.sesse.net/ AssignUserID devharwoodspike devharwoodspike </IfModule> <IfModule alias_module> ScriptAlias /cgi-bin/ /home/devharwoodspike/fina.dev.harwoodspike.com/cgi-bin/ </IfModule> WSGIDaemonProcess fina.dev.harwoodspike.com user=devharwoodspike group=devharwoodspike processes=3 threads=5 python-path=/home/devharwoodspike/python-apps/fina/ python-home=/home/devharwoodspike/python-apps/virtpython display-name=FINA-DEV WSGIProcessGroup fina.dev.harwoodspike.com WSGIApplicationGroup %{GLOBAL} WSGIScriptAlias / /home/devharwoodspike/python-apps/fina/fina/wsgi.py #ErrorLog /home/devharwoodspike/python-apps/fina/error_log #LogLevel debug # for django Alias /static/ /home/devharwoodspike/python-apps/fina/static/ <Directory /home/devharwoodspike/python-apps/fina/static> Options -Indexes +MultiViews +FollowSymLinks Order allow,deny Allow from all </Directory> Alias /media/ /home/devharwoodspike/python-apps/fina/media/ <Directory /home/devharwoodspike/python-apps/fina/media> Options -Indexes +MultiViews +FollowSymLinks Order allow,deny Allow from all </Directory> </VirtualHost> I do not see ErrorLog in my httpd.conf or in any of the included files (except for the virtual host definitions). My LogLevel is set to warn. I am currently setting up a test server without cPanel because I have suspicions that it could be Apache 2.4 related. As I said earlier my centos + webmin works but it is using Apache 2.2 (and an older version of mod_wsgi). -- You received this message because you are subscribed to the Google Groups "modwsgi" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. To post to this group, send email to [email protected]. Visit this group at https://groups.google.com/group/modwsgi. For more options, visit https://groups.google.com/d/optout.
