본문 바로가기

Linux Server 구축/1-2. Web Server

Apache WebServer - httpd.conf - Section 3: Virtual Hosts


Apache HTTP Server Version 2.2에 대한 자세한 정보  : http://httpd.apache.org/docs/2.2/

Virtual Hosts에 대한 자세한 정보 : http://httpd.apache.org/docs/2.2/vhosts/

-----------------------------------------------------------------------------------------------------

Section 3 : 가상 호스트 설정

여러분의 시스템에서 여러개의 도메인이나 호스트네임을 설정하여 관리하고자 한다면 <VirtualHost> 부분을 설정해 줘야 한다.
가상호스트에 대한 정보는 http://httpd.apache.org/docs/2.2/vhosts/ 를 참조해 보면 좀더 자세한 정보를 얻을 수 있다.
'-S' 옵션을 사용함으로써 가상 호스트의 설정에 대한 점검을 할 수 있다.

즉, 가상 도메인을 설정하는 부분으로 하나의 아이피로 여러개의 도메인을 사용할 경우 설정한다.

-----------------------------------------------------------------------------------------------------

### Section 3: Virtual Hosts
#
# VirtualHost: If you want to maintain multiple domains/hostnames on your
# machine you can setup VirtualHost containers for them. Most configurations
# use only name-based virtual hosts so the server doesn't need to worry about
# IP addresses. This is indicated by the asterisks in the directives below.
#
# Please see the documentation at
# <URL:http://httpd.apache.org/docs/2.2/vhosts/>
# for further details before you try to setup virtual hosts.
#
# You may use the command line option '-S' to verify your virtual host
# configuration.

#
# Use name-based virtual hosting.
#

#NameVirtualHost *:80 - 이름 기반의 가상 호스트를 사용하려면 사용할 IP 주소 (최소 1 개, 그리고 포트 번호)를 정의해주어야 한다.

#
# NOTE: NameVirtualHost cannot be used without a port specifier
# (e.g. :80) if mod_ssl is being used, due to the nature of the
# SSL protocol.
#

#
# VirtualHost example: - Virtual Hosts 예제
# Almost any Apache directive may go into a VirtualHost container.
# The first VirtualHost section is used for requests without a known
# server name.
#
#<VirtualHost *:80> - 가상 호스트를 지정한다. IP를 입력한다. Apache WebServer의 Port번호는 80번이다.
#    ServerAdmin webmaster@dummy-host.example.com - 해당 서버의 관리자의 메일주소를 입력한다.
#    DocumentRoot /www/docs/dummy-host.example.com - 해당 서버의 홈 디렉토리이다.
#    ServerName dummy-host.example.com - 해당 서버의 도메인이다.
#    ErrorLog logs/dummy-host.example.com-error_log - 해당 서버의 에러 로그파일 경로이다.
#    CustomLog logs/dummy-host.example.com-access_log common - 일반 로그파일 경로와 포맷을 지정한다.
#</VirtualHost>


httpd.conf 한글 번역 파일