반응형
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
- linux
- Strimzi
- devops #jenkins
- WEB
- ioredirection
- k8s
- namespace
- 쿠버네티스
- httpd실행
- RSS
- bash
- mongodb operator
- multivm
- devops #engineer
- aws #engineer
- variable
- java
- 초간단파이썬
- python
- container
- docker
- nginx
- springboot
- Engineer
- DOIK
- Vagrant
- Kubernetes
- 도커
- 파이썬
- 컨테이너
Archives
- Today
- Total
샤인의 IT (막 적는) 메모장
[Apache] WEB 설정(httpd.conf) 파일 정리 본문
반응형
Apache WEB 서버 구성파일(httpd.conf)
설정 정보 정리
Apache 구성 파일 위치
vi /etc/httpd/conf/httpd.conf
HTTP로 응답할 헤드를 설정하는 Servertokens 옵션
최소한의 정보를 가져오도록만 설정하는게 보안에 좋음. Prod / Major / Minor / Min / OS / Full 옵션
**Servertokens Prod
Server sends (e.g): Server : Apache
Apache Home Directory 지정 ServerRoot
ServerRoot "/etc/httpd"
Apache가 가동되는 동안 수신할 포트 지정 Listen
Listen 80
Apache와 호환되는 모듈 로드
LoadModule ssl_module modules/mod_ssl.so
Include *.conf
설정파일을 분산시켜 저장해 필요한 설정만 로드 가능
Internal Server Error가 발생했을 때 안내문 연락처 ServerAdmin
ServerAdmin user@example.com
서버를 식별하기 위한 호스트 지정 ServerName
ServerName example.com
웹페이지의 Root를 지정 DocumentRoot
DocumentRoot "${SRVROOT}/htdocs/root"
각 디렉토리에 고유한 설정을 적용하기 위한 블록 Directory
<Directory />
AllowOverride none
Require all denied
</Directory>
URL을 다른 URL로 리다이렉트 Redirect
Redirect /service http://example.com/
프록시 모드 ProxyPass
특정 경로 및 하위경로에 대한 요청을 프록시 서버로 중계
ProxyPass /remote http://example.com
사용자 정의 에러 페이지 ErrorDocument
ErrorDocument 500 /error_500.html
끝
반응형
'Open Source' 카테고리의 다른 글
[Nginx Ingress Controller] 서버 헤더 정보 설정 (0) | 2021.12.30 |
---|---|
[Nginx] WEB 서버 정리 (0) | 2021.12.30 |
[EFK] Kubernetes에 올라간 ElasticSearch log4j 취약점 해결 (0) | 2021.12.30 |
[NodeExporter] node-exporter 사용 포트 변경 (0) | 2021.12.30 |
Comments