what is my syntax error

V
  • 7 Mar '24
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] invalid variable name in C:\nginx/conf/nginx.conf

What am I dong incorrectly?

Thanks,

    Victor

-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://mailman.nginx.org/pipermail/nginx/attachments/20240307/981e60aa/attachment.htm>
S
  • 7 Mar '24
On Thu, Mar 07, 2024 at 03:20:23PM -0500, Victor Oppenheimer wrote:
> 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};

You may need to remove space after tilde symbol, after that
everything works as expected:

map $uri $lowercase {
        ~^(.+)$ /$1;
}

server {
        listen 80;
        location / {
                return 200 "lowercase=$lowercase\n";
        }
}

Test:

% curl 127.1:80/foobar
lowercase=//foobar

-- 
Sergey A. Osokin