|
Revision 2025
(checked in by fumanchu, 4 months ago)
|
Got the --server=modfcgid option to test.py working.
|
- Property svn:eol-style set to
native
|
| Line | |
|---|
| 1 |
|
|---|
| 2 |
# Apache2 server conf file for testing CherryPy with mod_fcgid. |
|---|
| 3 |
|
|---|
| 4 |
DocumentRoot "C:\Python25\Lib\site-packages\cherrypy\test" |
|---|
| 5 |
Listen 8080 |
|---|
| 6 |
LoadModule fastcgi_module modules/mod_fastcgi.dll |
|---|
| 7 |
LoadModule rewrite_module modules/mod_rewrite.so |
|---|
| 8 |
|
|---|
| 9 |
Options ExecCGI |
|---|
| 10 |
SetHandler fastcgi-script |
|---|
| 11 |
RewriteEngine On |
|---|
| 12 |
RewriteRule ^(.*)$ /fastcgi.pyc [L] |
|---|
| 13 |
FastCgiExternalServer "C:\\Python25\\Lib\\site-packages\\cherrypy\\test\\fastcgi.pyc" -host 127.0.0.1:4000 |
|---|