I am running a Docker Registry behind an Apache Reverse Proxy that provides:
- SSL Termination
- Basic Auth for
GET
/HEAD
- Basic Auth for
POST
/PUT
/PATCH
/DELETE
based on the reference example for Authenticate proxy with Apache by Docker.
I would like to remove the Authentication requirement for GET
& HEAD
, and allow unauthenticated users to read / pull
from the registry. However, I'm unable to.
<Location /v2>
Order deny,allow
Allow from all
AuthName "Registry Authentication"
AuthType basic
AuthUserFile "/usr/local/apache2/conf/httpd.htpasswd"
AuthGroupFile "/usr/local/apache2/conf/httpd.groups"
# Read access to authentified users
<Limit GET HEAD>
Require valid-user
</Limit>
# Write access to docker-deployer only
<Limit POST PUT DELETE PATCH>
Require group pusher
</Limit>
</Location>
I tried to:
- remove the
<Limit GET HEAD>
section; - add
Require all granted
instead ofRequire valid-user
; - replace with
LimitExcept
; - replace with
RequireAny
as per the Apache documentation.
but I have not been able to figure out the correct syntax. If unauthenticated GET
works, POST
causes: unauthorized: authentication required
I would like to:
- restrict
push
ing to the registry (POST
/PUT
/PATCH
) to authenticated users & groups; - but allow unauthenticated
pull
ing (GET
/HEAD
).
Have you tried to move the auth directives to the Require block?
I didn't test, just to give you an idea.