clarify hostname in querystring must by same as username used for http basic auth

This commit is contained in:
Thomas Waldmann 2013-11-24 06:20:23 +01:00
parent 068a27d86c
commit e0c83b78b7

View File

@ -173,8 +173,11 @@ class NicUpdateView(View):
https://fqdn:secret@nsupdate.info/nic/update
If the request does not come from the correct IP, you can give it as
a query parameter, you can also give the hostname (then it won't use
the username from http basic auth as the fqdn:
a query parameter.
You can also give the hostname/fqdn as a query parameter (this is
supported for api compatibility only), but then it MUST match the fqdn
used for http basic auth's username part, because the secret only
allows you to update this single fqdn).
https://fqdn:secret@nsupdate.info/nic/update?hostname=fqdn&myip=1.2.3.4
:param request: django request object