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
- ssh
- context
- JavaScript
- plugin
- tomcat
- Windows
- xargs
- lsof
- 단축키
- Mac
- VirtualBox
- web.xml
- find
- grep
- Source
- 줄바꿈 문자
- maVen
- port
- GIT
- Eclipse
- netsh
- resource
- import
- vscode
- IntelliJ
- Windows 10
- bash
- 네트워크
- Quartz
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