thicc docker image

This commit is contained in:
nora 2022-09-01 21:19:25 +02:00
parent c3ba3c7d74
commit ea06e2fbbb
2 changed files with 5 additions and 2 deletions

View file

@ -22,6 +22,8 @@ http {
server_name "private-docker-registry.nilstrieb.dev"; server_name "private-docker-registry.nilstrieb.dev";
client_max_body_size 0;
location / { location / {
proxy_pass https://registry:5000/; proxy_pass https://registry:5000/;
} }

View file

@ -16,9 +16,10 @@ http {
server_name "private-docker-registry.nilstrieb.dev"; server_name "private-docker-registry.nilstrieb.dev";
client_max_body_size 0;
location / { location / {
return 404 'No registry here...'; proxy_pass http://registry:5000/;
#proxy_pass http://registry:5000/;
} }
} }