Skip to content

simple module to uppercase/lowercase strings in the nginx config

Notifications You must be signed in to change notification settings

XiaoboYang/ngx_http_lower_upper_case

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

8 Commits
 
 
 
 
 
 

Repository files navigation

Nginx lower-/uppercase

This module simply uppercases or lowercases a string and saves it into a new variable.

It knows only two directives: upper and lower

Example

    set $var1 "hello";
    set $var2 "WORLD";

    upper $var3 "$var1 $var2"; # $var3 will be "HELLO WORLD"
    lower $var4 "$var1 $var2"; # $var4 will be "hello world"

About

simple module to uppercase/lowercase strings in the nginx config

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • C 100.0%