I am currently evaluating ways to run a persistent Python WSGI Webapp using Apache2 or Lighttpd. The idea is to have a daemon running on it’s own doing all the work, that also has an interface towards the webserver.
So I set up Lighttpd as SCGI client and used flup to wrap a simple WSGI app [...]
Archives for posts tagged ‘lighttpd’
Firefox vs. Chrome vs. IE8: multiple connections to one HTTP/SCGI/WSGI app
Monday, 13 July 2009
Quick way to Lighttpd HTTPS/SSL
Friday, 5 December 2008
Assuming one has a Lighttpd basic setup running on port 80, this is a fast and easy way to using SSL encryption with a self signed certificate. With this configuration modern browsers will complain about the certificate however!
create certificate (loosly following this tutorial)
# cd /etc/lighttpd
# openssl req -new -x509 -keyout server.pem -out server.pem -nodes
enable configuration:
# [...]

