1. Install apache
> aptitude install apache2
apache home dir : /etc/apache2/
default www home dir : /var/www
2. Debian apache install python module
> aptitude install libapache2-mod-python
3.
> vi /etc/apache2/sites-available/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>
[...]
4.
> /etc/init.d/apache2 restart
good articles here hopefully i learned from it.
Thanks for that, very interesting on the subject. I will do some more googleing for ë°ë¹„안 아파치 설치(Debian install Apache) - theThinkings.com