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 |
Tags
- VirtualBox
- ssh
- context
- import
- web.xml
- Eclipse
- Mac
- Quartz
- grep
- plugin
- find
- bash
- tomcat
- profile
- 네트워크
- IntelliJ
- 줄바꿈 문자
- Source
- Windows 10
- netsh
- GIT
- vscode
- maVen
- xargs
- Windows
- JavaScript
- lsof
- port
- resource
- 단축키
Archives
- Today
- Total
develog
[ubuntu] apache, Server 응답 헤더 설정 본문
security.conf 수정
# vi /etc/apache2/conf-available/security.conf
# ServerTokens 설정
ServerTokens Prod
# ServerSignature 설정
ServerSignature Off
ServerTokens 값에 따른 Server 응답 헤더 출력
ServerTokens Full (또는 없으면)
# Server 응답 헤더 출력
Server: Apache/2.4.41 (Ubuntu) OpenSSL/1.1.1f
ServerTokens OS
# Server 응답 헤더 출력
Server: Apache/2.4.41 (Ubuntu)
ServerTokens Minimal
# Server 응답 헤더 출력
Server: Apache/2.4.41
ServerTokens: Prod
# Server 응답 헤더 출력
Server: Apache
Comments