When I try to load the page I get an internal server error:
$ wget http://localhost/test
--2015-09-22 13:06:43-- http://localhost/test
Resolving localhost (localhost)... ::1, 127.0.0.1
Connecting to localhost (localhost)|::1|:80... connected.
HTTP request sent, awaiting response... 500 Internal Server Error
2015-09-22 13:06:44 ERROR 500: Internal Server Error.
Here is the end of /etc/httpd/conf/httpd.conf:
```
WSGIPythonHome /usr/local/pythonenv/BASELINE
#Note: tried this and it did not change anything
#WSGIApplicationGroup %{GLOBAL}
```
So, in the error logs:
```
$ tail /var/log/httpd/tethys_default.error.log
```
it says: End of script output before headers: wsgi.py
Here is /etc/httpd/conf.d/tethys-default.conf:
```
#I have tried with and without commented lines and nothing changed.
#WSGISocketPrefix run/wsgi
#WSGIPythonHome /usr/local/pythonenv/BASELINE
#WSGIPythonPath /usr/lib/tethys/lib/python2.7:/usr/lib/tethys/lib/python2.7/site-packages:/var/www/tethys/apps
<VirtualHost 0.0.0.0:80>
ServerName ...
ServerAlias ...
Alias /static/ /var/www/tethys/static/
<Directory /var/www/tethys/static/>
Require all granted
</Directory>
WSGIScriptAlias / /usr/lib/tethys/src/tethys_portal/wsgi.py
<Directory /usr/lib/tethys/src/tethys_portal>
<Files wsgi.py>
Require all granted
</Files>
</Directory>
# Daemon config
WSGIDaemonProcess tethys_default \
python-path=/usr/lib/tethys/src/tethys_portal:/usr/lib/tethys/lib/python2.7/site-packages:/var/www/tethys/apps
WSGIProcessGroup tethys_default
#Logs
ErrorLog /var/log/httpd/tethys_default.error.log
CustomLog /var/log/httpd/tethys_default.custom.log combined
</VirtualHost>
```
Any input would be appreciated!
Thanks!
--
You received this message because you are subscribed to the Google Groups "Tethys Platform" group.
To unsubscribe from this group and stop receiving emails from it, send an email to tethysplatfor...@googlegroups.com.
To view this discussion on the web visit https://groups.google.com/d/msgid/tethysplatform/0c912854-fe23-4eed-937e-e11cc4403290%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.
--
You received this message because you are subscribed to the Google Groups "Tethys Platform" group.
To unsubscribe from this group and stop receiving emails from it, send an email to tethysplatfor...@googlegroups.com.
To view this discussion on the web visit https://groups.google.com/d/msgid/tethysplatform/0c912854-fe23-4eed-937e-e11cc4403290%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.
To view this discussion on the web visit https://groups.google.com/d/msgid/tethysplatform/9af46191-c256-46ad-8e91-04ac7cbdeff2%40googlegroups.com.