Hello, I'm a software architect, I use nginx for different kinds of applications, it is very good, I like it :) Thank you for this great piece of softwareby denybell - New Member Introductions
Hello, I'm working on a new project, the system will run on 4 tomcats with a nginx server frontend used as a load balancer. I decided to use an Intel Atom 330 CPU for this server ( see the detailed specs : http://ark.intel.com/Product.aspx?id=35641 ) My question is : Are there any special options to compile nginx for this kind of CPU ? I saw an option called --with-cpu-opt the possible valby denybell - How to...
Hello again, Probably I have found the solution it was simpler than I originally thought ---------------------------------------------------------------- location / { root html; index index.html index.htm; satisfy_any on; # deny all; include /root/nginx_exp/nginx/ban_list; allow all;by denybell - How to...
Hello, Is it possible to have auth_basic active for a range of ips or a specified ip only ? geo $geo { default 0; 127.0.0.1/32 2; 192.168.1.0/24 1; 10.1.0.0/16 1; 217.12.113.114 3; } server { listen 80; server_name mysite.com; #charset koi8-r; #by denybell - How to...