- Today
- Total
Notice
Recent Posts
Recent Comments
Link
250x250
프로그래밍 농장
Linux [ 웹서버 - virtual host(가상 호스트) ] 본문
728x90
Virtual Host (가상 호스트)
== 하나의 웹서버에서 여러개의 호스트 운용시 설정
== 설정시 /etc/httpd/conf.d 경로에 vhost.conf 파일 생성으로 진행
ex)
<VirtualHost *:80>
ServerName www.linserver.com
DocumentRoot /var/www/www1
</VirtualHost>
--> 이런식으로 각각의 host 별로 DocumentRoot 경로를 정의
웹문서명 정의 : httpd.conf 파일에서 웹 문서명 정의 가능
DirectoryIndex == 클라이언트가 웹서버 접근시 표시할 웹 문서명 정의
728x90
'Linux' 카테고리의 다른 글
Linux [ Database 관련 정리 ] (0) | 2019.12.05 |
---|---|
Linux [ database ] (0) | 2019.12.04 |
Linux [ DNS 서버관련 메모 ] (0) | 2019.12.02 |
Linux [ web server ] (0) | 2019.12.02 |
Linux [ DNS 서버 구축하기 ] (0) | 2019.12.02 |