Join the community today
Become a Member

Nginx Limit per ip

Discussion in 'Nginx, PHP-FPM & MariaDB MySQL' started by pamamolf, Oct 18, 2014.

  1. pamamolf

    pamamolf Well-Known Member

    4,003
    420
    83
    May 31, 2014
    Ratings:
    +812
    Local Time:
    5:00 PM
    Nginx-1.17.x
    MariaDB 10.3.x
    Hi

    Is this edit enough to limit connections per ip on the server in general and not per domain only?
    edit usr/local/nginx/conf/nginx.conf

    add under this:
    large_client_header_buffers 4 256k;


    this:
    limit_conn limit_per_ip 80;
    limit_conn_zone limit_per_ip $binary_remote_addr 16m;

    restart nginx

    I want to limit per ip 80 connections.

    Thanks !!!
     
  2. eva2000

    eva2000 Administrator Staff Member

    49,891
    11,489
    113
    May 24, 2014
    Brisbane, Australia
    Ratings:
    +17,848
    Local Time:
    12:00 AM
    Nginx 1.21.x
    MariaDB 10.x
    haven't done it that way myself before so try it

    usually done on vhost level

    whole point is to try it out and see for yourself

    For more general Nginx stuff also read, search and ask at Nginx Forum :)
     
  3. pamamolf

    pamamolf Well-Known Member

    4,003
    420
    83
    May 31, 2014
    Ratings:
    +812
    Local Time:
    5:00 PM
    Nginx-1.17.x
    MariaDB 10.3.x
    I was read also that recommendation from user floren so maybe he knows to help :)

    Thanks George :)