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
the ip based acls are case sensitive:
This will deny the request, as the checks run against the lowercase ip <Allow address="2001:DB8::5" method="*.*"/>
<Allow address="2001:DB8::5" method="*.*"/>
This will correctly allow the request <Allow address="2001:db8::5" method="*.*"/>
<Allow address="2001:db8::5" method="*.*"/>
The text was updated successfully, but these errors were encountered:
Does https://gist.github.com/solj/d80d6aadbdf34d621c1cd0845a0b351a fix the issue for you?
Sorry, something went wrong.
This should fix the problem at hand, but I think a proper ipv6 handling should be implemented. Maybe using the ipaddress module?
At least parse the client ip in lowercase as well. IIRC ipv6 is completely case-insensitive.
No branches or pull requests
the ip based acls are case sensitive:
This will deny the request, as the checks run against the lowercase ip
<Allow address="2001:DB8::5" method="*.*"/>
This will correctly allow the request
<Allow address="2001:db8::5" method="*.*"/>
The text was updated successfully, but these errors were encountered: