python cgi脚本总是得到403禁止使用apache2 2.4.6

时间:2013-11-11 16:14:08

标签: python apache ubuntu curl

工作环境:Ubuntu 13.10 saucy,apache2 2.4.6

我在/ usr / lib / cgi-bin中有一个python脚本,我将它用作将内部url转换为外部的代理。它适用于apache 2.2但总是有403禁止错误。

/etc/apache2/site-enabled/mirror.conf

ScriptAlias /mirror /usr/lib/cgi-bin/mirror.py

/usr/lib/cgi-bin/mirror.py

#!/usr/bin/python

import os
import sys
import pycurl

username = "username"
password = "password"
base = "https://mirror.xxxxxxxx.com/xxxxxxxx"

if os.environ.has_key(‘PATH_INFO’):
    path = os.environ[‘PATH_INFO’]
else:
    path = ‘/’

dst = base + path

def write(data):
    sys.stdout.write(data)

def header(data):
    for line in data.splitlines():
        if line.startswith('HTTP/'):
            ret = line.split()[1]
            sys.stdout.write('Status: ' + ret + '\r\n')
        elif line.startswith('Location:'):
            line = line.replace('https://mirror.xxxxxxxx.com/xxxxxxxx', 'http://mirror.internal/mirror')
            sys.stdout.write(line + '\r\n')
        else:
            sys.stdout.write(line + '\r\n')

curl = pycurl.Curl()

curl.setopt(curl.URL, dst)

curl.setopt(curl.HEADERFUNCTION, header)
curl.setopt(curl.USERPWD, '%s:%s' % (username, password))
curl.setopt(curl.WRITEFUNCTION, write)

curl.perform()
curl.close()

我应该遵循apache新版本的任何提示吗?

1 个答案:

答案 0 :(得分:0)

apach2 2.4.6不要将/ etc / apache2 / mods-enabled中的cgid.conf和cgid.load作为默认值。在从mods-available到mods-enabled进行软链接之后,问题就解决了。