Apache2.4 멀티포트 멀티사이트 구성 방법

3494 단어 서버
전재:https://segmentfault.com/a/1190000009124999
우선 httpd를 수정합니다.conf 프로필.
vim conf/httpd.conf

추가:
Listen 1234

그리고
# Virtual hosts
#Include conf/extra/httpd-vhosts.conf

바꾸다
# Virtual hosts
Include conf/extra/httpd-vhosts.conf

가상 설정을 사용하고 conf/extra/httpd-vhosts를 편집하는 것입니다.conf, 추가:
 24 
 25 DocumentRoot "/xxx/xxx/xxx"
 26 ServerName localhost
 33 
 35     Require all granted
 36 
 37 

그리고 아파치를 다시 시작합니다.
apachectl restart

그리고 브라우저에서 방문하면 됩니다. 여기서 한마디 더 하겠습니다. 인터넷에서 많은 자료가 conf/extra/httpd-vhosts라고 합니다.conf 추가:
 33 "/xxx/xxx/xxx">
 35       Order allow,deny
 36       Allow from all
 37 

이것은 2.2 버전에서 설정을 수정하는 방법입니다. 2.4 버전이 올가미로 바뀌었습니다. 만약 이렇게 설정하면 로그 로그가 오류를 보고합니다.
client denied by server configuration: /xxx/xxx/xxx, referer: http://xxx/xxx/xxx

따라서 2.4 버전의 아파치에 대한 정확한 설정 방법은 다음과 같다.
 33 "/xxx/xxx/xxx">
 35     Require all granted
 36 

좋은 웹페이지 즐겨찾기