what is my syntax error

2024-03-07 Thread Victor Oppenheimer
In my nginx.conf file on my Windows computerI have the following code in nginx.conf. http { # http context specific to HTTP affecting all virtual servers # force incoming URLs to lower case     map $uri $lowercase {~ ^(.+)$ /$1}; When I run nginx -t I get the following error. nginx: [emerg] i

Forcing URLs to lower case example

2024-03-07 Thread Victor Oppenheimer
Greetings, I am using nginx on MS Windows primarily for reverse proxying. I would like to force URLs reaching nginx into lower case before further processing in my nginx.configfile. That is, I'd like subsequent server and/or location directives to all receive lower case versions of URLs bein

Re: SSL issue

2024-02-11 Thread Victor Oppenheimer
wrote: I misread.  NGINX doesnt see the certs exist meaning whatever user is running it doesnt have permissions. Make sure your user running NGINX has access down the whole folder chain. Sent from my Galaxy Original message From: Victor Oppenheimer Date: 2/11/24 17:17 (GM

SSL issue

2024-02-11 Thread Victor Oppenheimer
Thank you so much for the help you have provided me with nginx on my Windows 2016 server thus far. I'm now  attempting to add serving https files to my configuration.  Although I want to eventually support a number of servers being browsed for both http and https pages, I am starting with my opps

Serving pdf configuration issue

2024-02-07 Thread Victor Oppenheimer
I am running nginx 1.24.0 on a computer with Windows Server 2016 Server standard OS. I am truing to use nginx to function as a reverse proxy server when it received requests for some URLs and to directly serve web pages for others.  I was successful s configuing nginx to do the reverse proxy serv

Re: Problem using nginx as reverse proxy server on Windows Server 2016

2024-02-03 Thread Victor Oppenheimer
"Percentage of time the processor is idle" with a PID of 0. This is typically the Web Deployment Agent Service (MsDepSvc) (this often uses PID4) or Host Network Service - both stoppable from from services.msc Let us know how you get on! On Sat, 3 Feb 2024 at 18:51, Victor Opp

Problem using nginx as reverse proxy server on Windows Server 2016

2024-02-03 Thread Victor Oppenheimer
I am trying to run nginx as a reverse proxy server on my Microsoft Windows Server 2016 Standard computer. I previously have used Microsoft IIS and Apache Tomcat on this computer to serve webpages on port 80 and port 8080 respectively. However, I want to have some of my websites use SSL and be ac