hi all,
I am struggling with configuring apache with mezzanine.
In attachment you find my vhost configuration. The same configuration works
with a basic django instance, it does not with mezzanine.
I get a 500 Apache Internal Server Error, without any other errors in the
logs.
Any idea what the problem can be?
thanks
--
You received this message because you are subscribed to the Google Groups
"Mezzanine Users" group.
To unsubscribe from this group and stop receiving emails from it, send an email
to [email protected].
For more options, visit https://groups.google.com/d/optout.
<VirtualHost my_ip:80>
ServerName my_url.net
WSGIProcessGroup ta
WSGIDaemonProcess ta processes=2 threads=15 python-home=/home/marcello/env
python-path=/var/www/vhosts/analysis.marcellolussana.net/ta
WSGIScriptAlias / /path_www//ta/ta/wsgi.py
<Directory /path_www/ta/ta>
<Files wsgi.py>
Require all granted
</Files>
</Directory>
Alias /static /path_www/static
<Directory /path_www/ta/static>
Require all granted
</Directory>
DocumentRoot /path_www/ta/
LogLevel debug
ErrorLog /var/log/apache2/my_url-error.log
CustomLog /var/log/apache2/my_url.log combined
</VirtualHost>