mirror of
https://github.com/Joxit/docker-registry-ui.git
synced 2025-04-29 08:29:54 +03:00
11 lines
No EOL
470 B
Markdown
11 lines
No EOL
470 B
Markdown
# Example for issue #20 (HTTPS supports)
|
|
|
|
This example will override the original nginx conf with one supporting HTTPS. You will need to rewrite all the project configuration (replaces `proxy_pass` with your own value, in this example `http://registry:5000` is fine).
|
|
|
|
Generating a self signed certificate:
|
|
|
|
```
|
|
openssl req -newkey rsa:2048 -nodes -keyout nginx/privkey.pem -x509 -days 3650 -out nginx/fullchain.pem
|
|
```
|
|
|
|
The UI will be available here : https://localhost |