Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | ||||||
2 | 3 | 4 | 5 | 6 | 7 | 8 |
9 | 10 | 11 | 12 | 13 | 14 | 15 |
16 | 17 | 18 | 19 | 20 | 21 | 22 |
23 | 24 | 25 | 26 | 27 | 28 |
Tags
- svn 충돌 해결 resolve
- wkhtmltopdf 실행 오류
- sha-2 root
- html pdf 변환
- mysqldump: Got error: 1045
- usb efi 시스템 파티션 삭제
- 구글 OTP 인증
- 파라미터 & 오류
- (using password: YES)" when trying to connect
- libxrender1
- svn 충돌 해결 resolved
- mysql root 비밀번호 변경
- PHP 구글 OTP 인증
- httpd.conf 보안 설정
- 비밀번호정규식
- bootstrap
- PHP 구글 OTP 연동
- apple push notification service (apns) is changing
- 아파치 웹 서버의 정보 숨기기
- apache mod rewrite
- php 배열제거
- bootstrap modal
- group_concat 구분자
- 우분투 mysql 비밀번호 없이 로그인 될때
- mariadb upgrade
- modsecurity 설치
- 자바스크립트비밀번호검증
- 비밀번호검증정규식
- PHP 정규식 예제
- javascript
Archives
- Today
- Total
투덜이 개발자
Apache vhost 세팅중 403 Forbidden이 발생할 경우. 본문
반응형
Apache vhost 세팅중 403 Forbidden이 발생할 경우.
서버쪽 vhost 내용에 보면
<Directory "{소스 경로}">
Options +FollowSymLinks -Indexes
AllowOverride All
Order allow,deny
Allow from all
</Directory>
이런 모양.
<Directory "{소스 경로}">
Options +FollowSymLinks -Indexes
AllowOverride All
<IfVersion < 2.4>
Allow from all
</IfVersion>
<IfVersion >= 2.4>
Require all granted
</IfVersion>
</Directory>
에러 이유는 apache 2.4 들어오면서 allow from 이 require granted 로 구문이 바뀌었음.
http://www.mins01.com/mh/tech/read/1560?lm=gallery
공대여자 홈 : 기술 : apache vhost 세팅중 403 Forbidden이 발생할 경우.
읽기 : apache vhost 세팅중 403 Forbidden이 발생할 경우. #apache #403
www.mins01.com
반응형