반응형
AWS EC2 서버에 ssh로 서버 접속 후
nginx 설정파일 수정
$ sudo vi /etc/nginx/nginx.conf
http 부분에 아래 내용 입력
http {
include /etc/nginx/security.conf;
# ...
}
nginx 버전이 노출되지 않는다.
security.conf 파일 생성
$ cd /etc/nginx
$ sudo vi security.conf
아래 내용 입력
server_tokens off;
add_header X-Frame-Options SAMEORIGIN;
add_header X-Content-Type-Options nosniff;
add_header X-XSS-Protection "1; mode=block";
nginx 재시작
# security.conf에 내용이 잘 입력되었는지 확인
$ sudo nginx -t
# Restart server
$ sudo service nginx restart
반응형
'Programming' 카테고리의 다른 글
AWS EC2에 HTTPS 적용하기 (0) | 2021.08.05 |
---|---|
[git] commit log 검색하기 (0) | 2021.02.26 |
Visual Studio Code에서 clang-format 적용하기 (0) | 2021.02.26 |
[Mac] Atom autocomplete-python 패키지 v1.17.0 오류 해결방법 (0) | 2021.01.28 |
[Mac] Django 설치 (0) | 2020.04.24 |