lnmp 재 컴 파일 nginx geoip 모듈 증가
./configure --user=www --group=www --prefix=/usr/local/nginx --with-http_stub_status_module --with-http_ssl_module --with-http_realip_module --with-http_geoip_module --with-stream=dynamic --with-http_v2_module --with-http_gzip_static_module --with-http_sub_module --with-stream --with-stream_ssl_module --with-openssl=/root/lnmp1.6/src/openssl-1.1.1b --with-openssl-opt='enable-weak-ssl-ciphers'
\ # 원래 nginx 이름 바 꾸 기
mv /usr/local/nginx/sbin/nginx /usr/local/nginx/sbin/nginx.old
\ # 컴 파일 된 복사 과거 (원본 디 렉 터 리 에서 압축 해제)
cp /objs/nginx /usr/local/nginx/sbin/nginx
yum -y install geoip-devel GeoIP
데이터 베 이 스 는 /usr/share/GeoIP/GeoIP.dat
nginx 설정 파일 을 설정 하기 시작 합 니 다.geoip_country /usr/share/GeoIP/GeoIP.dat;
# geoip_city /usr/share/GeoIP/GeoLiteCity.dat;
#
map $geoip_country_code $allowed_country {
default no;
CN yes;
}
그리고 server 블록 에서 설정:
if ($allowed_country = no) {
return 403;
}
이 내용에 흥미가 있습니까?
현재 기사가 여러분의 문제를 해결하지 못하는 경우 AI 엔진은 머신러닝 분석(스마트 모델이 방금 만들어져 부정확한 경우가 있을 수 있음)을 통해 가장 유사한 기사를 추천합니다:
lnmp 재 컴 파일 nginx geoip 모듈 증가nginx - V 출력 인터페이스 에서 있 는 지 확인 – with - httpgeoip_module 은 lnmp 셸 디 렉 터 리 에 먼저 들 어가 지 않 았 습 니 다. src 에 들 어가 nginx 소스 코드 ...
텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
CC BY-SA 2.5, CC BY-SA 3.0 및 CC BY-SA 4.0에 따라 라이센스가 부여됩니다.