이름기반 가상호스트 설정관련 질문입니다

우분투서버 6.10으로 리눅스에 입문한 왕 초짜 인사드립니다.^^

서버 Apache/2.0.55 (Ubuntu) 입니다.

/etc/apache2/apache2.conf 에 httpd.conf,port.conf등을 인클루드하는 형태로 설정을 잡더군요.

질문의 요지는 하나의 ip:80 포트만 사용하여 두개의 도메인을 각각 다른 경로에 세팅해주는 방법입니다.

관련 사이트를 검색해보긴 했는데 까막눈이다 보니 제게 맞는 내용을 찾기가 어렵군요.
공부를 위해 두개의 도메인을 붙여준 상태입니다.
gaetgol.net
gaetgol.com
php세팅 경로는 http://www.gaetgol.com/~mt/php_ini.php 입니다.

조언 부탁 드립니다.

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

설정 파일가운데 호스트 관련 부분은 아래 내용이 전부입니다.
/etc/apache2/sites-available/default

NameVirtualHost *
<VirtualHost *>
    ServerAdmin master@gaetgol.net
    DocumentRoot /home
    #SerName gaetgol.net
    #ServerAlias www.gaetgol.net
    <Directory />
        Options FollowSymLinks
        AllowOverride None
    </Directory>
    <Directory /home>
        Options Indexes FollowSymLinks MultiViews
        AllowOverride None
        Order allow,deny
        allow from all
        # Uncomment this directive is you want to see apache2's
        # default start page (in /apache2-default) when you go to /
        #RedirectMatch ^/$ /apache2-default/
    </Directory>

    ScriptAlias /cgi-bin/ /usr/lib/cgi-bin/
    <Directory "/usr/lib/cgi-bin">
        AllowOverride None
        Options +ExecCGI -MultiViews +SymLinksIfOwnerMatch
        Order allow,deny
        Allow from all
    </Directory>

    ErrorLog /var/log/apache2/error.log

    # Possible values include: debug, info, notice, warn, error, crit,
    # alert, emerg.
    LogLevel warn

    CustomLog /var/log/apache2/access.log combined
    ServerSignature On

    Alias /doc/ "/usr/share/doc/"
    <Directory "/usr/share/doc/">
        Options Indexes MultiViews FollowSymLinks
        AllowOverride None
        Order deny,allow
        Deny from all
        Allow from 127.0.0.0/255.0.0.0 ::1/128
    </Directory>

</VirtualHost>

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

# 사용자 디렉토리
/etc/apache2/mods-enabled/userdir.conf

<IfModule mod_userdir.c>
        UserDir www
    UserDir disabled root
        
        <Directory /home/*/www>
                AllowOverride FileInfo AuthConfig Limit
                Options MultiViews Indexes SymLinksIfOwnerMatch IncludesNoExec
        </Directory>
</IfModule>

[이 게시물은 관리자님에 의해 2011-10-31 17:30:25 Apache에서 이동 됨]
|

댓글 4개

아래 내용이 저의 아파치 2.2.4 서버에 버츄얼호스트 설정한 내용입니다..^^
이름기반 버츄얼호스트 설정입니다..
참고하세요...^^

#NameVirtualHost 고정아이피:80 바로 아래부분 설정내용.

NameVirtualHost 123.456.789.123:80

#
# 기본 홈
<VirtualHost *:80>
ServerAdmin webmaster@localhost
DocumentRoot D:/절대경로/폴더명
ServerName localhost
ServerAlias localhost
ErrorLog logs/localhost-error_log
CustomLog logs/localhost-access_log common
</VirtualHost>
#
# 추가 1
<VirtualHost *:80>
ServerAdmin webmaster@도메인
DocumentRoot D:/절대경로/폴더명
ServerName 도메인명
ErrorLog logs/도메인명-error_log
CustomLog logs/도메인명-access_log common
</VirtualHost>
#
#

이후는 추가1을 복사하여 계속 추가하면서 경로와 도메인명을 맞춰주시면 됩니다...^^
고맙습니다.
당장 삽질을 해보겠습니다.^^
NameVirtualHost *

이렇게 하시면 80포트가아닌 다른 포트도 접근가능해지지 않나요?

NameVirtualHost *:80

이렇게 하셔야 80 포트만 열어주는걸로 알고 있거든요...^^

아파치 메뉴얼을 참고하세요...^^

http://httpd.apache.org/docs/2.2/vhosts/

http://httpd.apache.org/docs/2.2/vhosts/name-based.html
감사합니다.^^

NameVirtualHost * 기본설정 부분은 그냥 두고 아래 내용만 추가했더니 잘됩니다.

NameVirtualHost *:80
<VirtualHost *:80>
ServerAdmin webmaster@gaetgol.net
DocumentRoot /home/mt
ServerName gaetgol.net
ServerAlias www.gaetgol.net
</VirtualHost>

<VirtualHost *:80>
ServerAdmin webmaster@gaetgol.com
DocumentRoot /home/mt/www
ServerName gaetgol.com
ServerAlias www.gaetgol.com
</VirtualHost>

이제 유저추가만 해주면 되겠습니다. <-- 사실 이것도 전혀 모릅니다. ㅎㅎ

도와주셔서 고맙습니다~!!
댓글을 작성하시려면 로그인이 필요합니다.

프로그램

태그 필터 (최대 3개) 전체 개발자 소스 기타 mysql 팁자료실 javascript php linux flash 정규표현식 jquery node.js mobile 웹서버 os 프로그램 강좌 썸네일 이미지관련 도로명주소 그누보드5 기획자 견적서 계약서 기획서 마케팅 제안서 seo 통계 서식 통계자료 퍼블리셔 html css 반응형 웹접근성 퍼블리싱 표준화 반응형웹 홈페이지기초 부트스트랩 angularjs 포럼 스크린리더 센스리더 개발자톡 개발자팁 퍼블리셔톡 퍼블리셔팁 기획자톡 기획자팁 프로그램강좌 퍼블리싱강좌
+
제목 글쓴이 날짜 조회
18년 전 조회 4,635
18년 전 조회 2,327
18년 전 조회 2,462
18년 전 조회 4,210
18년 전 조회 4,069
18년 전 조회 2,301
18년 전 조회 2,939
18년 전 조회 5,322
18년 전 조회 2,578
18년 전 조회 3,127
18년 전 조회 8,682
18년 전 조회 2,166
18년 전 조회 3,093
18년 전 조회 2,778
18년 전 조회 3,104
18년 전 조회 2,525
18년 전 조회 2,621
18년 전 조회 2,906
18년 전 조회 4,150
18년 전 조회 2,807
18년 전 조회 2,902
18년 전 조회 3,366
18년 전 조회 3,092
18년 전 조회 2,279
18년 전 조회 2,722
18년 전 조회 2,710
18년 전 조회 4,191
18년 전 조회 4,938
18년 전 조회 2,491
18년 전 조회 2,652
18년 전 조회 2,583
18년 전 조회 3,933
18년 전 조회 2,543
18년 전 조회 2,557
18년 전 조회 1,880
18년 전 조회 2,172
18년 전 조회 2,890
18년 전 조회 3,769
18년 전 조회 3,255
18년 전 조회 3,141
18년 전 조회 2,198
18년 전 조회 4,301
18년 전 조회 2,328
18년 전 조회 4,356
18년 전 조회 2,686
18년 전 조회 2,521
18년 전 조회 3,624
18년 전 조회 2,407
18년 전 조회 2,345
18년 전 조회 3,442
18년 전 조회 4,126
18년 전 조회 2,363
18년 전 조회 2,512
18년 전 조회 4,010
18년 전 조회 2,890
18년 전 조회 3,518
18년 전 조회 2,945
18년 전 조회 1,836
18년 전 조회 2,303
18년 전 조회 3,855
18년 전 조회 3,089
18년 전 조회 3,159
18년 전 조회 3,772
18년 전 조회 2,329
18년 전 조회 2,445
18년 전 조회 3,346
18년 전 조회 2,032
18년 전 조회 2,398
18년 전 조회 2,702
18년 전 조회 1,939
18년 전 조회 2,275
18년 전 조회 2,152
18년 전 조회 2,684
18년 전 조회 2,108
18년 전 조회 1,902
18년 전 조회 1,933
18년 전 조회 1,915
18년 전 조회 2,927
18년 전 조회 1,732
18년 전 조회 5,830
19년 전 조회 2,571
19년 전 조회 1,827
19년 전 조회 4,872
19년 전 조회 2,214
19년 전 조회 5,007
19년 전 조회 3,376
19년 전 조회 2,300
19년 전 조회 1,994
19년 전 조회 2,280
19년 전 조회 1,895
19년 전 조회 2,004
19년 전 조회 2,009
19년 전 조회 2,645
19년 전 조회 3,687
19년 전 조회 6,147
19년 전 조회 4,047
19년 전 조회 3,227
19년 전 조회 2,300
19년 전 조회 2,586
19년 전 조회 2,360