dokuwiki 설치 본문

Programming

dokuwiki 설치

halatha 2011. 4. 14. 03:55
참고
http://www.dokuwiki.org/ko:dokuwiki
http://nogada2.egloos.com/1496931
http://webnautes.tistory.com/162
http://blog.claztec.net/2460678

1. apache2, php5 설치
$  dpkg -s apache2 php5
$  sudo apt-get install apache2 php5

2. dokuwiki download해 압축 풀고 /var/www에 복사
$  cd /var/www
$  cp -rp ~/dokuwiki-2010-11-07a ./dokuwiki

3. 권한 설정
$  sudo chown -R www-data:www-data /var/www/dokuwiki/
$  vi /etc/apache2/conf.d/dokuwiki.conf
Alias /dokuwiki /var/www/dokuwiki

<Directory /var/www/dokuwiki>
#       Options +FollowSymLinks
#       AllowOverride All
#       order allow,deny
        allow from localhost 127.0.0.1
</Directory>

4. apache 재시동
$  /etc/init.d/apache2 restart

5. 접속
http://localhost/dokuwiki
Comments