for me all the SSL testing seem to work, except i can not explain why
in my daemon log i get reference to port 443 while i did put this as
url https://192.168.1.17:81/appwsgi/www/user/user.htm
[Fri Jun 19 20:30:51 2009] [info] [client 192.168.1.18] (70007)The
timeout specified has expired: SSL input filter read failed.
[Fri Jun 19 20:30:51 2009] [info] [client 192.168.1.18] Connection
closed to child 1 with standard shutdown (server 192.168.1.17:443)
[Fri Jun 19 20:30:51 2009] [info] [client 192.168.1.18] (70007)The
timeout specified has expired: SSL input filter read failed.
[Fri Jun 19 20:30:51 2009] [info] [client 192.168.1.18] Connection
closed to child 6 with standard shutdown (server 192.168.1.17:443)
[Fri Jun 19 20:30:51 2009] [info] [client 192.168.1.18] (70007)The
timeout specified has expired: SSL input filter read failed.
[Fri Jun 19 20:30:51 2009] [info] [client 192.168.1.18] Connection
closed to child 7 with standard shutdown (server 192.168.1.17:443)
Also using this url my stderr debug messages get written into the main
w80 log file instead of my virtual w81 log file, wsgi server messages
on the other hand are written in w81?
User www
Group www
ServerRoot "/usr/httpd"
LoadModule ssl_module modules/mod_ssl.so
SSLSessionCache dbm:conf/ca
SSLCertificateFile conf/ca.crt
SSLCertificateKeyFile conf/ca.key
LoadModule wsgi_module modules/mod_wsgi.so
WSGIPythonPath /usr/httpd/www
WSGIDaemonProcess w81 python-path=/usr/httpd/www user=www group=www
processes=1 threads=1 display-name=w81
LoadModule mime_module modules/mod_mime.so
AddType text/plain .txt
AddType text/css .css
AddType text/javascript .js
AddType application/xhtml+xml .htm
AddType application/x-shockwave-flash .swf
AddType video/x-flv .flv
AddType audio/mpeg .mp3
AddType image/png .png
AddType image/x-icon .ico
AddCharset UTF-8 .htm .js .css .txt
AddHandler wsgi-script .wsgi
LoadModule deflate_module modules/mod_deflate.so
AddOutputFilterByType DEFLATE text/html text/plain text/xml text/
javascript text/css
LoadModule authz_host_module modules/mod_authz_host.so
LoadModule autoindex_module modules/mod_autoindex.so
LoadModule dir_module modules/mod_dir.so
Listen 80
#Listen 443 seems to use 443 anyway ???
SSLEngine On
LogLevel info
ErrorLog "logs/w80.log"
WSGIProcessGroup %{GLOBAL}
WSGIApplicationGroup %{GLOBAL}
ServerAdmin [email protected]
ServerName 192.168.1.17
DocumentRoot "www"
<Directory />
Options ExecCGI Indexes FollowSymLinks
DirectoryIndex index.htm
IndexIgnore .??*
Order Deny,Allow
Allow from all
</Directory>
Listen 81
<VirtualHost *:81>
SSLEngine On
LogLevel info
ErrorLog logs/w81.log
WSGIProcessGroup w81
WSGIApplicationGroup %{GLOBAL}
ServerAdmin [email protected]
ServerName 192.168.1.17
DocumentRoot "www"
<Directory />
Options ExecCGI Indexes FollowSymLinks
DirectoryIndex index.htm
IndexIgnore .??*
Order Deny,Allow
Allow from all
</Directory>
</VirtualHost>
--~--~---------~--~----~------------~-------~--~----~
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
-~----------~----~----~----~------~----~------~--~---