You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Currently init.pp checks that the value of proxy_cache_levels "isInteger()". nginx allows proxy_cache "levels" values like "1:2" and "1:2:2". This valid syntax is currently not allowed with this mod.
Suggested fix: Remove the "isInteger()" check for proxy_cache_levels in init.pp and replace it with validate_string(). Better fix would be to parse the string and do a better syntax check.
The text was updated successfully, but these errors were encountered:
Currently init.pp checks that the value of proxy_cache_levels "isInteger()". nginx allows proxy_cache "levels" values like "1:2" and "1:2:2". This valid syntax is currently not allowed with this mod.
Suggested fix: Remove the "isInteger()" check for proxy_cache_levels in init.pp and replace it with validate_string(). Better fix would be to parse the string and do a better syntax check.
The text was updated successfully, but these errors were encountered: