Apache에서 여러 http 포트를 구성하는 방법

王林
풀어 주다: 2020-11-03 17:03:21
앞으로
4535명이 탐색했습니다.

Apache에서 여러 http 포트를 구성하는 방법

방법 1: httpd-vhosts 사용

(관련 권장 사항:apache)

/usr/local/apache/conf/와 같은 Apache 구성 디렉터리를 입력하세요.

httpd.conf 파일을 엽니다

다중 청취 창 구성 81, 82

ServerName localhost:81 # Listen 80 Listen 81 Listen 82
로그인 후 복사

#Include conf/extra/httpd-vhosts.conf를 찾아 # 기호를 제거하고 주석 처리를 해제하세요

/usr/local/apache/conf/extra 디렉토리에 들어가서 httpd- vhosts.conf 파일

NameVirtualHost 구성 *:81

 ServerAdmin host1.example.com DocumentRoot "/home/public/web/host1" ServerName localhost:81 ServerAlias localhost:81 ErrorLog "logs/host1.example.com-error_log" #CustomLog "logs/host1.example.com-access_log common"   ServerAdmin host2.example.com DocumentRoot "/home/public/web/host2" ServerName localhost:82 ErrorLog "logs/host1.example.com-error_log" #CustomLog "logs/host1.example.com-access_log common" 
로그인 후 복사

방법 2: httpd.conf만 수정

/usr/local/apache/conf/ 같은 아파치 구성 디렉터리를 입력하세요.

httpd.conf 파일을 엽니다

여러 청취 창, 81, 82

Listen 81 Listen 82
로그인 후 복사

를 구성하고 파일 끝에 다음 콘텐츠를 추가합니다:

 DocumentRoot /home/public/web/host1 ServerName localhost:81   Options Indexes FollowSymLinks AllowOverride All Order allow,deny Allow from all   DocumentRoot /home/public/web/host2 ServerName localhost:82   Options Indexes FollowSymLinks AllowOverride All Order allow,deny Allow from all 
로그인 후 복사

다양한 버전에 대한 Apache 디렉터리 권한 설정

1, 이전 사용

Order allow,deny Allow from all
로그인 후 복사

2, 새 사용

Require all granted
로그인 후 복사

3, 새로운 예시

#add for WWW Listen 91  DocumentRoot "D:/IDE/WWW" ServerName localhost:91   Options Indexes FollowSymLinks AllowOverride None Require all granted 
로그인 후 복사

위 내용은 Apache에서 여러 http 포트를 구성하는 방법의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!

관련 라벨:
원천:csdn.net
본 웹사이트의 성명
본 글의 내용은 네티즌들의 자발적인 기여로 작성되었으며, 저작권은 원저작자에게 있습니다. 본 사이트는 이에 상응하는 법적 책임을 지지 않습니다. 표절이나 침해가 의심되는 콘텐츠를 발견한 경우 admin@php.cn으로 문의하세요.
저자별 최신 기사
최신 다운로드
더>
웹 효과
웹사이트 소스 코드
웹사이트 자료
프론트엔드 템플릿
회사 소개 부인 성명 Sitemap
PHP 중국어 웹사이트:공공복지 온라인 PHP 교육,PHP 학습자의 빠른 성장을 도와주세요!