Geoip2 module question

2023-07-19 Thread Software Info
Hi All, I am running oracle Linux with free nginx and I have been trying to get the nginx-geoip2-module.so module. It's not in any repo that I have seen and I have had problems compiling it. I used to use this on FreeBSD. I am wondering why it's not more available in the Linux repositories. Any th

Re: Nginx use Redis for caching

2023-04-13 Thread Software Info
Fantastic. That helps. Thank you very much. Best Regards, On Fri, Apr 7, 2023 at 6:45 PM Sergey A. Osokin wrote: > > Hi, > > hope you're doing well. > > On Thu, Apr 06, 2023 at 09:59:10AM -0500, Software Info wrote: > > I am trying to figure out how to use

Nginx use Redis for caching

2023-04-06 Thread Software Info
Hi All, I am trying to figure out how to use redis for caching in nginx. I found out how to do it in Wordpress but for a local php based site that was set up, I am not seeing how to do it. Shouldn't I be able to pass settings in nginx.conf for the Redis url and password? Can anyone point me in the

Certificate Error

2022-12-14 Thread Software Info
Hi All, I would really appreciate some help with this sticky problem. I am using nginx as a reverse proxy. I have version 1.20.1 running on FreeBSD 13.1. Today I set up for a new domain. I got a wildcard certificate for mydomain.com from GoDaddy. I put the paths in nginx.conf but when I run nginx -

Images do not load

2021-11-22 Thread Software Info
Hi All, I am running version version 1.20 on FreeBSD. I am trying to set up nginx as a reverse proxy for a backend server sitting on Windows 2012. When I try to load the site through nginx, I don’t get any images back. On the windows server, everything the site needs is under the central folder.

RE: [no subject]

2019-04-13 Thread Software Info
Oops, I just noticed I don’t have a Subject. Sorry about that. The firewall that we use is really cumbersome when it comes to geo ip blocking in my opinion so I decided to do it in nginx. I forgot to mention too that when I put the IP address in the server that I don’t want to block I still get

[no subject]

2019-04-12 Thread Software Info
Hi All I have implemented GEO IP blocking which is working just fine. I have the settings you see below.     map $geoip_country_code $country_access {     "US"    0;     default 1;     }     server { if ($country_access = '1') { return 403; } I notice though