서버 서브도메인 설정법 질문이요~
본문
리눅스 centos6.5, 아파치 2.2.15, 네임서버 bind9.8.2 서버를 사용중에 있습니다.
각각 구분되어 들어가지게 서브도메인 설정법 아시는 분~ Help me~
답변 2
ttl 값은 아래 링크 참조하셔서 셋업하세요.
http://mapoo.net/app/appbind/dnsttl/
그리고 httpd-vhost.conf 에 아래와 같이 설정 하시면 됩니다.
<VirtualHost *:80>
</VirtualHost>
ServerName www.domain.com
ServerAlias domain.com
ErrorLog /home/domain/public_html/web_log/error_log
CustomLog /home/domain/public_html/web_log/access_log common
</VirtualHost>
<VirtualHost *:80>
DocumentRoot /home/test/public_html
ServerName www.test.domain.com
ServerAlias test.domain.com
ErrorLog /home/test/public_html/web_log/error_log
CustomLog /home/test/public_html/web_log/access_log common
</VirtualHost>
ttl설정 몇으로하셨나요???
하루~이틀로 설정해두시고 그러시는건.... 아니시겠죠?ㅎㅎㅎ
ttl 설정 아니면 vhost에서 도큐먼트루트는 바꿔서 설정하셨나요?