first full commit

This commit is contained in:
Remy
2011-05-20 19:26:53 -07:00
parent 2156e13414
commit e4a1d6a4a1
149 changed files with 39684 additions and 0 deletions
+14
View File
@@ -0,0 +1,14 @@
# Apache2 server conf file for testing CherryPy with mod_fcgid.
DocumentRoot "C:\Python25\Lib\site-packages\cherrypy\test"
ServerName 127.0.0.1
Listen 8080
LoadModule fastcgi_module modules/mod_fastcgi.dll
LoadModule rewrite_module modules/mod_rewrite.so
Options ExecCGI
SetHandler fastcgi-script
RewriteEngine On
RewriteRule ^(.*)$ /fastcgi.pyc [L]
FastCgiExternalServer "C:\\Python25\\Lib\\site-packages\\cherrypy\\test\\fastcgi.pyc" -host 127.0.0.1:4000