nginxbeautifier
nginxbeautifier copied to clipboard
Problem with single line return to multi line return
if ($arg_name = "blah") {return 301 /test/blah;}
turns into
if ($arg_name = "blah") {
return 301 /test/blah
}
This is missing the ending semi-colon