We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
We should read a label like:
'--label=openresty.allowed_ips=127.0.0.1 123.0.0.0/32'
If specified, we would add something like the following:
satisfy all; allow 127.0.0.1; allow 123.0.0.0/32; deny all;
If we detect an openresty.basic-auth label with user:password combinations, we would instead use:
openresty.basic-auth
satisfy any; allow 127.0.0.1; allow 123.0.0.0/32; deny all;
and add the basic auth after as appropriate.
The text was updated successfully, but these errors were encountered:
No branches or pull requests
We should read a label like:
If specified, we would add something like the following:
If we detect an
openresty.basic-auth
label with user:password combinations, we would instead use:and add the basic auth after as appropriate.
The text was updated successfully, but these errors were encountered: