/etc/apache/httpd.conf 수정 하도록 하자.
간혹 파일명만 적어주고 그 파일명의 위치를 안적어주는 사이트가 있는데
이럴때는 당황하지 말고
find . -name <파일이름, * 와일드 카드 앞뒤 사용가능> -print
ex) find . -name http*.* -print
위 처럼 해주면 금방 찾을수 있을것이다..
단 cd / 명령어를 사용해서 루트에서 실행해야 된다.
그리고 실행명령어를 찾을때는
which 찾고자하는명령어
ex)which perl
금방 찾을수 있을것이다..
초보였을때 달랑 httpd.conf을 수정하자 라고 봤을때 많이 힘들었다.
각설하고 아래 부분을 찾아서 빨간색으로 된부분을 추가 또는 수정해주도록 하자.
<Directory /var/www/>
#
# This may also be "None", "All", or any combination of "Indexes",
# "Includes", "FollowSymLinks", "ExecCGI", or "MultiViews".
#
# Note that "MultiViews" must be named *explicitly* --- "Options All"
# doesn't give it to you.
#
Options indexes Includes FollowSymLinks ExecCGI
#
# This controls which options the .htaccess files in directories can
# override. Can also be "All", or any combination of "Options", "FileInfo",
# "AuthConfig", and "Limit"
#
AllowOverride FileInfo
#
# Controls who can get stuff from this server.
#
Order allow,deny
Allow from all
</Directory>
<IfModule mod_rewrite.c>
RewriteEngine On
</IfModule>
수정이 되었으면 아래부분을 찾아서
#AddHandler cgi-script .cgi .sh .pl
AddHandler cgi-script .cgi .sh .pl으로 변경해주자
마지막으로 아래에 있는 부분을 아무곳에서 추가 해주자
LoadModule rewrite_module modules/mod_rewrite.so
AddModule mod_rewrite.c
LoadModule cgi_module /usr/lib/apache/1.3/mod_cgi.so
AddModule mod_cgi.c
이렇게 하면 모든 보드에 설치 가능할것이다...
혹시나 몰라서 설정 파일을 http://pds.ls2.wo.tc/ 에 올려 두었다
필요 하면 꺼내 사용해도 좋다.. 지금 서버에서 사용하는 파일이다.
'LinkStation HLAN > System Configuration' 카테고리의 다른 글
리눅스 텍스트 모드로 부팅하기 (0) | 2008.05.14 |
---|---|
링크스테이션 온오프 설정하기 (0) | 2007.06.14 |
리눅스 시간 초간단 변경하기 (0) | 2007.05.15 |
2차 도메인 설정 하기 (0) | 2007.05.14 |
crontab 기본 설정 명령어 (0) | 2007.05.13 |
서버 점검 사항 (0) | 2007.05.13 |
Freelink 기본 용량 확장해서 사용 하기 (0) | 2007.05.12 |
Freelink 시스템 설정 하기 (0) | 2007.05.12 |