묻고답하기
sulinux를 사용하여 개인서버구축중..
2010.04.29 18:33
일단 Apm-tool을 사용하여 서버설정은 완료되었습니다.
그런데 계정을 하나 생성하여 XE 홈피를 운영하려합니다.
그래서 Test 계정을 하나 만들어서 xe파일을 올렸습니다.
위치는 home/Test/public_html/xe 가 됩니다.
설치를 하기위해서 http://localhost/xe/index.php 하면 페이지를 찾지 못하는 404에러가 나옵니다.
그래서 http://localhost 하면 /usr/local/apache/htdocs/index.html 의 "APM 설치완료" 화면이 보여집니다.
물론 htdocs/ 밑에 xe를 설치하면 될거는 같은데요,,,
그러면 좀 불편할거 같아서 구지 Test 계정에 xe를 설치하려고 합니다.
도메인연결은 안하구 그냥 ip주소로 연결할거니 네임서버설정과는 관계가 없을것 같구요,
문제는 httpd.conf 파일인데요.
현재 v-hosting 설정은 아래와 같습니다.
<Directory "/usr/local/apache/htdocs/>
AllowOverride All
</Directory>
#Virtual Host
NameVirtualHost 192.168.123.103:80
<VirtualHost 192.168.123.103:80>
DocumentRoot /usr/local/apache/htdocs/
ServerName *
</VirtualHost>
<VirtualHost 192.168.123.103:80>
DocumentRoot /home/Test/public_html
ServerName 192.168.123.103
ServerAlias Test123.com
# ErrorLog /home/Test/public_html/web_log/error_log
# CustomLog /home/Test/public_html/web_log/access_log common
</VirtualHost>
<Directory "/home/Test/public_html>
AllowOverride All
</Directory>
정리하자면 Test 계정하나 만들어서 그곳에 xe를 설치하려하는데 접속이 안되는 문제입니다.
어제, 오늘 이걸루 진도가 안나가네요.
도움주시면 고맙겠습니다.