nginx header 정보 제거
2024. 3. 1. 12:10ㆍWeb Server/nginx
https://gist.github.com/aamishbaloch/1031e7490d7d57d55baff57fce8d2997
# 버전정보 제거
vi nginx.conf
-----------------------------
http {
server_tokens off;
}
-----------------------------
# 서버종류 제거
sudo apt-get update
sudo apt-get install nginx-extras
vi nginx.conf
-----------------------------
http {
more_clear_headers Server;
server_tokens off;
}
-----------------------------
제거전
버전만 제거
서버정보 제거
'Web Server > nginx' 카테고리의 다른 글
nginx tcp proxy 설정 (0) | 2024.05.04 |
---|---|
nginx 컴파일해서 설치하기: nginx tcp proxy 서버 구성 (0) | 2024.03.11 |
nginx와 minikube ingress 연동 (0) | 2024.02.03 |
nginx 인증 설정 (0) | 2023.06.10 |
minikube proxy 설정 (0) | 2023.06.06 |