windows下Karrigell与Apache结合成功

windows下Karrigell与Apache结合成功

今天搞了个工程,本来要用karrigell自己的服务,但考虑到非要登陆后才可以,故想到了apache。
按照karrigell自带的介绍,有些不同,自带的是liunx下的配置,现在说说windows下配置:
在apache的http.conf上修改:

1.把下面三句各自前面的“#”去掉
LoadModule proxy_module modules/mod_proxy.so
LoadModule proxy_http_module modules/mod_proxy_http.so
LoadModule rewrite_module modules/mod_rewrite.so

2.添加以下几句:
ProxyRequests On
<Proxy *>
    Order allow,deny
    Deny from none
    Allow from all
</Proxy>
RewriteEngine On
RewriteCond  %{SCRIPT_FILENAME} !autostart\.cgi$
RewriteRule ^(.*) http://192.168.11.12:8081$1 [P]
ErrorDocument 502 /cgi-bin/autostart.cgi

3.创建autostart.cgi文件。
#!C:\Python24\python.exe -u
print "Content-type: text/html\r\n"
print """<html><head><META HTTP-EQUIV="Refresh" CONTENT="10;
      URL=/"></head><body>Restarting site ...<a href="/">click
      here<a></body></html>"""
import os
import sys
os.system(sys.executable + \
   ' E:\Karrigell-2.3.1\Karrigell.py -P 8081 -S ' +\
   'E:\Karrigell-2.3.1\Karrigell.ini &')
   
以上三个步骤就搞定了,但要注意,端口不是8081,是由karrigell.ini决定的
多谢分享
希望大家多多交流交流