apache vhost deny 설정

by 조쉬 posted Mar 26, 2014
?

단축키

Prev이전 문서

Next다음 문서

ESC닫기

크게 작게 위로 아래로 댓글로 가기 인쇄
vhost 파일 내용

<VirtualHost *>
ServerAdmin webmaster@localhost

ServerName 도메인명
ServerAlias 서브도메인명

DocumentRoot /홈디렉토리/
<Directory /홈디렉토리/>
Options Indexes FollowSymLinks MultiViews
AllowOverride None
Order allow,deny
allow from all
deny from xxx.xxx.xxx.xxx
</Directory>

ErrorLog /var/log/apache/test.com-error_log
CustomLog /var/log/apache/test.com-access_log common
</VirtualHost>