가상 호스트 추가하기(예를 들어서 just4fun.co.kr 이라고 하겠습니다.)
/etc/apache2/sites-available 디렉토리에 just4fun.co.kr 파일 생성
# vi just4fun.co.kr
아래와 같이 설정을 입력 후 저장합니다. 물론 자신에게 맞도록 바꿔야 겠죠.
<VirtualHost *>
DocumentRoot /home/j4f/just4fun.co.kr
ServerName just4fun.co.kr
ServerAlias www.just4fun.co.kr
<Directory "/home/j4f/just4fun.co.kr">
Options Indexes MultiViews
Options ExecCGI Includes
AllowOverride None
Order allow,deny
Allow from all
</Directory>
</VirtualHost>
아파치의 apache2.conf 에서 sites-available 에 있는 파일들을 include 하므로
심볼릭 링크를 걸어주면 자동으로 설정에 반영이 됩니다.
# cd /etc/apache2/sites-enabled
# ln -s ../sites-available/just4fun.co.kr just4fun.co.kr
그 외의 자세한 설정방법은 아차피 메뉴얼을 참고하시면 됩니다. 물론 저희가 지원가능한
질문은 언제든지 환영입니다.
'우분투 서버' 카테고리의 다른 글
우분투에서 root 권한으로 cron 을 돌리려고 할때 (0) | 2012.10.12 |
---|---|
Apache 웹서버 사용시 디렉토리 리스트가 보여지는 옵션 (0) | 2012.10.11 |
ssh 원격 연결 warning:remote host identification has changed [출처] ssh 원격 연결 warning:remote host identification has changed (0) | 2012.10.10 |