일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- elasticsrach template
- wordpress function
- memcached
- Wordpress
- wordpress feed
- config
- mapping
- template
- memcache
- Kibana
- htpasswd
- 프록시
- Elasticsearch
- 아파치 프록시
- 워드프레스
- 설정 파일
- 인스타그램
- graph api
- 워드프레스 rss
- 맵핑
- 아파치
- 워드프레스 피드
- 크롤링
- htaccess
- wordpress rss
- 엘라스틱서치
- Apache
- Today
- Total
EunsooD
AH01276: Cannot serve directory /var/www/html/: No matching DirectoryIndex (index.html) found, and server-generated directory index forbidden by Options directive GCP에서 Apache세팅을 하는데.. "AH01276"에러가 등장했다. 아무리 봐도 폴더 퍼미션은 755로 멀쩡한데 자꾸 권한이 없단다. 이유는 모르겠지만 구글링 결과 해결은 chcon -R -t httpd_sys_content_t [폴더명] 뭔가 httpd에 새로운 권한을 폴더에 줘야 하나보다.
아파치 세팅에서 htpasswd를 설정하여 아이디/패스워드 인증을 하게 하는 경우가 있는데,프록시로 할 경우 해당 폴더를 타지 않고 넘겨버리는 경우가 있어서 먹지 않을 때가 있다. 그럴때는 conf파일에서 아래와 깉이 설정해주면 된다. ProxyPass /mytomcatapp http://localhost:8080/app1 AuthType Basic AuthName "Wrapper auth" AuthBasicProvider file AuthUserFile "/path/to/users.htpasswd" Require valid-user 출처 : https://stackoverflow.com/questions/23565693/how-can-i-password-protect-applications-behind..
아파치 설정을 변경하고 재시작해서 설정을 적용시키곤 하는데,세션들이 연결되어 있어서 재시작이 어려운 경우가 있다. 그 때에는 다음과 같은 명령어를 입력하면 재시작 하지 않고 설정 적용이 가능하다. [root]# apachectl graceful 출처 : https://serverfault.com/questions/94089/apache-config-not-updating-on-restart?utm_medium=organic&utm_source=google_rich_qa&utm_campaign=google_rich_qaacceptehttps://serverfault.com/questions/94089/apache-config-not-updating-on-restart?utm_medium=organic&ut..
우분투에서 기본적으로 아파치 설정 파일은 /etc/apache2하위에 존재하게 된다. /etc/apache2/conf.d : 기본파일설정일반적으로 httpd.conf 를 기본 설정파일로 사용하고 있는데, 우분투에서는 apache2.conf 를 사용 /etc/apache2/conf.d : 고급설정 파일다른 배포판에서 httpd.conf 파일 하나에 설정되어 있던 문자셋과 에러메시지, 보안과 관련된 설정등을 따로 따로 분리하여 conf.d 디렉토리밑에서 설정하고 있다. 또한 사용자가 설치하게 되는 Apache와 관련된 애플리케이션들의 설정파일들도 위치하게 된다. /etc/apache2/envvars : apache2ctl 환경설정 파일 /etc/apache2/httpd.conf : 사용자의 특정 설정 파일역..
계속 삭제하고 재 설치 하는데 apache2에서 44: Can't open /etc/apache2/envvars 에러가 났을때sudo apt-get remove --purge $(dpkg -l apache* | grep ii | awk '{print $2}') && sudo apt-get install apache2 출처:apache2 error [Can't open /etc/apache2/envvars] 발생시 hack script