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
- profile
- IntelliJ
- grep
- 네트워크
- 단축키
- Mac
- 줄바꿈 문자
- plugin
- Windows 10
- port
- import
- netsh
- JavaScript
- Source
- Windows
- web.xml
- tomcat
- Eclipse
- xargs
- context
- Quartz
- maVen
- bash
- ssh
- GIT
- find
- resource
- vscode
- lsof
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>
아파치를 재시작한다
Comments