Skip to content

Commit

Permalink
docs(token-auth-keycloak): add missing ui in proxy configuration
Browse files Browse the repository at this point in the history
  • Loading branch information
Joxit committed Apr 2, 2021
1 parent 619627e commit 7e5fca1
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 2 deletions.
1 change: 1 addition & 0 deletions examples/token-auth-keycloak/.gitignore
Original file line number Diff line number Diff line change
@@ -1 +1,2 @@
data/registry/
data/keycloak/
8 changes: 6 additions & 2 deletions examples/token-auth-keycloak/conf/proxy/nginx.conf
Original file line number Diff line number Diff line change
Expand Up @@ -34,9 +34,13 @@ server {
proxy_pass http://keycloak:8080;
}

location /ui {
proxy_pass http://ui/;
}

location / {
root /usr/share/nginx/html;
index index.html index.htm;
root /usr/share/nginx/html;
index index.html index.htm;
}

#error_page 404 /404.html;
Expand Down
1 change: 1 addition & 0 deletions examples/token-auth-keycloak/docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,7 @@ services:
image: joxit/docker-registry-ui:static
environment:
REGISTRY_TITLE: My Private Docker Registry
URL: http://localhost
networks:
- registry-ui-net

Expand Down

0 comments on commit 7e5fca1

Please sign in to comment.