Debian配置Apache2支持mod-python

Posted wzc0066

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Debian配置Apache2支持mod-python相关的知识,希望对你有一定的参考价值。

Ubuntu好像是直接支持的,现在回到Debian有点不适应了。需要人工配置一下:

安装模块:apt-get install libapache2-mod-python

编辑文件:/etc/apache2/sites-available/000-default

增加如下内容:

        <Directory /var/www/>
                Options Indexes FollowSymLinks MultiViews
                AllowOverride None
                Order allow,deny
                allow from all
                AddHandler mod_python .py
                PythonHandler mod_python.publisher
                PythonDebug On
        </Directory>

 重启服务:/etc/init.d/apache2 restart

参考:https://www.howtoforge.com/embedding-python-in-apache2-with-mod_python-debian-etch

 

以上是关于Debian配置Apache2支持mod-python的主要内容,如果未能解决你的问题,请参考以下文章

Debian 8 apache2

debian apache2 多端口对应多文件 虚拟端口配置

Debian 安装上的 Wordpress apache2 虚拟主机配置

Debian上的Apache2,全新安装,无法摆脱默认值

树莓派/Debian Apache2 配置自建 CA 实现 HTTPS(SSL) 服务

为啥debian8安装nginx变成了apache2?