>  기사  >  운영 및 유지보수  >  nginx와 Apache 간의 동시 IP 액세스를 제한하는 방법

nginx와 Apache 간의 동시 IP 액세스를 제한하는 방법

WBOY
WBOY앞으로
2023-05-21 20:04:091475검색

nginx
nginx는 동시 IP 수를 제한합니다. 이는 동일한 IP
1에서 서버에 대한 동시 연결 수를 제한한다는 의미이기도 합니다. nginx/conf/nginx.conf
limit_zone one $binary_remote_addr 10m;
2.limit_conn 추가
이 변수는 http, server, location에서 사용할 수 있습니다
한 사이트만 제한하므로 서버에 추가하세요
vi /usr/local /nginx/conf/host/gaojinbo.com .conf
limit_conn one 10;
3. nginx를 다시 시작
killall nginx -hup


코드 복사 코드는 다음과 같습니다.

vi /usr/local/nginx/conf/ vhosts/down.redocn.com.conf

limit_zone one $binary_remote_addr 10m;

server
{
listen 80;
server_name down.redocn.com;
index index.html index.htm index.php;
root /data/www /wwwroot/down;
error_page 404 /index.php;
# 서버 오류 페이지를 정적 페이지로 리디렉션 /50x.html
error_page 500 502 503 504 /50x.html;
location = /50x.html {
root html;
}
#zone 제한
위치 / {
limit_conn one 1;
limit_rate 20k;//Speed ​​​​limit
}
# 정적 파일 제공
location ~ ^/(images|javascript|js|css|flash|media| static)/ {
root /data/www/wwwroot/down;
expires 30d;
}
}

apache

Apache 서버가 동일한 IP 주소에 대한 연결을 제한하도록 하려면 mod_limitipconn이 필요합니다. 일반적으로 수동 컴파일이 필요합니다. 그러나 모듈 작성자는 자신의 Apache 버전에 따라 직접 사용할 수 있는 일부 컴파일된 모듈도 제공합니다. 1. 컴파일 방법:
tar zxvf mod_limitipconn-0.xx.tar.gz
cd mod_limitipconn-0.xx
make apxs=/usr/local/apache/bin/apxs —– 여기서 원하는 경로에 따라 설정
make install apxs = /usr/local/apache/bin/apxs —–여기에서 자신의 경로에 따라 설정해야 합니다
2.rpm 설치 방법:
mod_limitipconn-0.xx.rpm
rpm -uhv mod_limitipconn-0.xx를 직접 다운로드합니다. rpm
그런 다음 생성된 mod_limitipconn.so 파일이 Apache 서버 모듈 디렉터리에 있는지 확인합니다.
3. httpd.conf 파일을 편집합니다.


코드를 복사합니다. 코드는 다음과 같습니다.

extendedstatus on

loadmodulelimitipconn_modulemodules/mod_limitipconn.so < ifmodule mod_limitipconn.c >

< 모든 가상 호스트
maxconnperip 3 # IP당 3개의 동시 연결만 허용됩니다
noiplimit image/* # 이미지에 대한 IP 제한 없음
< /location>
< 위치 /mp3 > # /mp3 모든 호스트의 디렉토리
maxconnperip # IP별로만 연결 요청 허용
onlyiplimit audio/mpeg video # 이 제한은 비디오 및 오디오 형식의 파일에만 적용됩니다
< /location >
< /ifmodule>

위 내용은 nginx와 Apache 간의 동시 IP 액세스를 제한하는 방법의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!

성명:
이 기사는 yisu.com에서 복제됩니다. 침해가 있는 경우 admin@php.cn으로 문의하시기 바랍니다. 삭제