These are teh enteries in my httpd.conf
<Directory "/opt/apache2215/htdocs">
Options Indexes FollowSymLinks
</Directory>
<VirtualHost 192.168.1.6:80>
ServerName www.healthcare.in
ServerAlias healthcare.in
Redirect / https://www.healthcare.in/index.wsgi
.
.
<Directory /home/dev/wsgi-scripts>
Options FollowSymLinks
Order allow,deny
Allow from all
</Directory>
.
.
</VirtualHost>
<VirtualHost 192.168.1.6:443>
DocumentRoot "/home/dev/wsgi-scripts/"
ServerName www.healthcare.in
.
.
.
<Directory /home/dev/wsgi-scripts>
Options FollowSymLinks
Order allow,deny
Allow from all
SSLOptions +StdEnvVars
Options ExecCGI
SetHandler wsgi-script
WSGIProcessGroup healthcare.in
</Directory>
</VirtualHost>
Reg
Nitin
>
> Looks like you haven't enabled FollowSymLinks in Apache or your
> symlink is broken.
>
> Graham
>
--
You received this message because you are subscribed to the Google Groups
"modwsgi" group.
To post to this group, send email to [email protected].
To unsubscribe from this group, send email to
[email protected].
For more options, visit this group at
http://groups.google.com/group/modwsgi?hl=en.