데비안 아파치 설치(Debian install Apache)

| 2 Comments | No TrackBacks

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

No TrackBacks

TrackBack URL: http://www.thethinkings.com/mt/mt-tb.cgi/67

2 Comments

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

Leave a comment