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 | 29 | 30 | 31 |
Tags
- wordpress function
- Elasticsearch
- 워드프레스
- memcache
- graph api
- 워드프레스 피드
- memcached
- 설정 파일
- 엘라스틱서치
- 맵핑
- Apache
- htpasswd
- elasticsrach template
- 인스타그램
- 아파치 프록시
- wordpress feed
- Kibana
- htaccess
- wordpress rss
- 프록시
- mapping
- Wordpress
- 아파치
- 크롤링
- template
- 워드프레스 rss
- config
Archives
- Today
- Total
EunsooD
아파치에서 프록시 세팅시 htpasswd 설정하는 방법 본문
반응형
아파치 세팅에서 htpasswd를 설정하여 아이디/패스워드 인증을 하게 하는 경우가 있는데,
프록시로 할 경우 해당 폴더를 타지 않고 넘겨버리는 경우가 있어서 먹지 않을 때가 있다.
그럴때는 conf파일에서 아래와 깉이 설정해주면 된다.
ProxyPass /mytomcatapp http://localhost:8080/app1
<Location /mytomcatapp>
AuthType Basic
AuthName "Wrapper auth"
AuthBasicProvider file
AuthUserFile "/path/to/users.htpasswd"
Require valid-user
</Location>
출처 : https://stackoverflow.com/questions/23565693/how-can-i-password-protect-applications-behind-mod-proxy-in-apache
반응형
'STUDY > APM' 카테고리의 다른 글
아파치 에러 "AH01276" (0) | 2020.11.20 |
---|---|
아파치 재시작 하지 않고 설정 파일 적용하기 (0) | 2018.05.10 |
CentOS와 Ubuntu에서 아파치 세팅은 조금 다르다. (0) | 2014.07.24 |
아파치 완전제거 및 실행시 안되는 부분 (1) | 2014.07.24 |
아파치 세팅시 에러 날 경우 로그를 확인해라. (0) | 2014.07.24 |
Comments