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
- profile
- Eclipse
- bash
- ssh
- vscode
- find
- Windows 10
- grep
- VirtualBox
- web.xml
- tomcat
- xargs
- Windows
- port
- JavaScript
- Quartz
- Source
- plugin
- resource
- import
- GIT
- 네트워크
- 단축키
- lsof
- context
- 줄바꿈 문자
- maVen
- netsh
- IntelliJ
- Mac
Archives
- Today
- Total
develog
[ubuntu] apache, Server 응답 헤더 삭제 본문
libapache2-mod-security2 설치하기
# libapache2-mod-security2 를 설치한다
sudo apt-get install libapache2-mod-security2
# security2 를 활성화 한다
sudo a2enmod security2
아파치 설정에 아래 내용을 추가한다
# vi /etc/apache2/apache2.conf
<IfModule security2_module>
SecRuleEngine On
SecServerSignature " "
</IfModule>
아파치를 재시작한다