-
-
Notifications
You must be signed in to change notification settings - Fork 332
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
chore: fix issue 20 example typo and remove refs to master branch
- Loading branch information
Showing
5 changed files
with
33 additions
and
32 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,13 +1,13 @@ | ||
## Examples | ||
|
||
- [Use docker-registry-ui as a proxy (use REGISTRY_URL)](/~https://github.com/Joxit/docker-registry-ui/tree/master/examples/ui-as-proxy) | ||
- [Use docker-registry-ui as standalone (use URL)](/~https://github.com/Joxit/docker-registry-ui/tree/master/examples/ui-as-standalone) | ||
- [Use docker-registry-ui with traefik](/~https://github.com/Joxit/docker-registry-ui/tree/master/examples/traefik) | ||
- [Use docker-registry-ui with docker registry and Amazon s3](/~https://github.com/Joxit/docker-registry-ui/tree/master/examples/issue-75) ([#75](/~https://github.com/Joxit/docker-registry-ui/issues/75)) | ||
- [FIX revproxy to registry does not work when published under non-root url](/~https://github.com/Joxit/docker-registry-ui/tree/master/examples/issue-73) ([#73](/~https://github.com/Joxit/docker-registry-ui/issues/73)) | ||
- [Use docker-registry-ui with HTTPS](/~https://github.com/Joxit/docker-registry-ui/tree/master/examples/issue-20) ([#20](/~https://github.com/Joxit/docker-registry-ui/issues/20)) | ||
- [Unable to push image when docker-registry-ui is used as a proxy on non 80 port](/~https://github.com/Joxit/docker-registry-ui/tree/master/examples/issue-88) ([#88](/~https://github.com/Joxit/docker-registry-ui/issues/88)) | ||
- [Add custom headers bases on environment variable and/or file when the ui is used as proxy](/~https://github.com/Joxit/docker-registry-ui/tree/master/examples/proxy-headers) ([#89](/~https://github.com/Joxit/docker-registry-ui/pull/89)) | ||
- [UI showing same sha256 content digest for all tags + Delete is not working](/~https://github.com/Joxit/docker-registry-ui/tree/master/examples/issue-116) ([#116](/~https://github.com/Joxit/docker-registry-ui/issues/116)) | ||
- [Electron-based Standalone Application](/~https://github.com/Joxit/docker-registry-ui/tree/master/examples/electron) ([#129](/~https://github.com/Joxit/docker-registry-ui/pull/129)) | ||
- [Use docker-registry-ui as proxy with read-only right](/~https://github.com/Joxit/docker-registry-ui/tree/master/examples/read-only-auth) ([#47](/~https://github.com/Joxit/docker-registry-ui/issues/47)) | ||
- [Use docker-registry-ui as a proxy (use REGISTRY_URL)](/~https://github.com/Joxit/docker-registry-ui/tree/main/examples/ui-as-proxy) | ||
- [Use docker-registry-ui as standalone (use URL)](/~https://github.com/Joxit/docker-registry-ui/tree/main/examples/ui-as-standalone) | ||
- [Use docker-registry-ui with traefik](/~https://github.com/Joxit/docker-registry-ui/tree/main/examples/traefik) | ||
- [Use docker-registry-ui with docker registry and Amazon s3](/~https://github.com/Joxit/docker-registry-ui/tree/main/examples/issue-75) ([#75](/~https://github.com/Joxit/docker-registry-ui/issues/75)) | ||
- [FIX revproxy to registry does not work when published under non-root url](/~https://github.com/Joxit/docker-registry-ui/tree/main/examples/issue-73) ([#73](/~https://github.com/Joxit/docker-registry-ui/issues/73)) | ||
- [Use docker-registry-ui with HTTPS](/~https://github.com/Joxit/docker-registry-ui/tree/main/examples/issue-20) ([#20](/~https://github.com/Joxit/docker-registry-ui/issues/20)) | ||
- [Unable to push image when docker-registry-ui is used as a proxy on non 80 port](/~https://github.com/Joxit/docker-registry-ui/tree/main/examples/issue-88) ([#88](/~https://github.com/Joxit/docker-registry-ui/issues/88)) | ||
- [Add custom headers bases on environment variable and/or file when the ui is used as proxy](/~https://github.com/Joxit/docker-registry-ui/tree/main/examples/proxy-headers) ([#89](/~https://github.com/Joxit/docker-registry-ui/pull/89)) | ||
- [UI showing same sha256 content digest for all tags + Delete is not working](/~https://github.com/Joxit/docker-registry-ui/tree/main/examples/issue-116) ([#116](/~https://github.com/Joxit/docker-registry-ui/issues/116)) | ||
- [Electron-based Standalone Application](/~https://github.com/Joxit/docker-registry-ui/tree/main/examples/electron) ([#129](/~https://github.com/Joxit/docker-registry-ui/pull/129)) | ||
- [Use docker-registry-ui as proxy with read-only right](/~https://github.com/Joxit/docker-registry-ui/tree/main/examples/read-only-auth) ([#47](/~https://github.com/Joxit/docker-registry-ui/issues/47)) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -19,6 +19,7 @@ server { | |
server { | ||
listen 80; | ||
location / { | ||
# Force HTTPS | ||
return 301 https://$host$request_uri; | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters