I am going to create a web server from scratch, mainly for writing webapps with Python. Looking at alternatives to Apache + mod_wsgi, it seems that pypy plays very well with almost everything that I intend to use for my applications. Unable to play with PyPy correctly, I believe that this is a great opportunity to use it, since I do not need a server to be bulletproof.
However, there are some PHP applications that I would like to run on a web server for administrative purposes (e.g. PHPPgAdmin). Is there an elegant solution that allows me to use PyPy in a PHP compatible web server like Apache? Or will I have to run CherryPy / Paste or one of the other WSGI servers with Apache and mod_wsgi on a separate port to provide administrative services?
source share