하나의 IP 서버에서 2개이상의 도메인을 연결하여 사용하고 싶을때
IP 123.123.123.123 에
blog.naver.com
test.naver.com
두개의 도메인을 연결하여 각각 폴더로 매칭하고싶을대
- 수정파일
/etc/apache2/sites-available/000-default.conf
- 수정내용
<VirtualHost *:80>
ServerName 2차도메인 (aaa.domain.com)
ServerAdmin webmaster@localhost
DocumentRoot /home/www/xe
ErrorLog ${APACHE_LOG_DIR}/error.log
CustomLog ${APACHE_LOG_DIR}/access.log combined
</VirtualHost>
<VirtualHost *:80>
ServerName 2차도메인 (bbb.domain.com)
ServerAdmin webmaster@localhost
DocumentRoot /home/www/wordpress
ErrorLog ${APACHE_LOG_DIR}/error.log
CustomLog ${APACHE_LOG_DIR}/access.log combined
</VirtualHost>
'IT개발정보' 카테고리의 다른 글
프론트엔드와 백엔드 현실 (0) | 2022.03.17 |
---|---|
프로그래밍 한짤 요약 (0) | 2022.03.17 |
우분투 os버젼,apache 버젼, php버젼 확인 (0) | 2019.01.10 |
우분트 root 패스워드 설정하기 (0) | 2018.12.27 |
http로 접속시 https로 자동 연결 (0) | 2018.12.25 |