Welcome to Centmin Mod Community
Register Now

Nginx block.conf firewall not working?

Discussion in 'Nginx, PHP-FPM & MariaDB MySQL' started by Oxide, Jun 1, 2015.

  1. Oxide

    Oxide Active Member

    534
    29
    28
    Mar 19, 2015
    Ratings:
    +59
    Local Time:
    6:32 AM
    Sorry, delete please.


    permission to delete posts maybe? lol
     
  2. eva2000

    eva2000 Administrator Staff Member

    55,158
    12,249
    113
    May 24, 2014
    Brisbane, Australia
    Ratings:
    +18,825
    Local Time:
    6:32 AM
    Nginx 1.27.x
    MariaDB 10.x/11.4+
    by default block.conf is commented out so you need to uncomment it removing hash # in from of include line in nginx vhost and restart nginx server

    change from
    Code:
    # block common exploits, sql injections etc
    #include /usr/local/nginx/conf/block.conf;
    to

    Code:
    # block common exploits, sql injections etc
    include /usr/local/nginx/conf/block.conf;