File tree Expand file tree Collapse file tree 1 file changed +8
-1
lines changed Expand file tree Collapse file tree 1 file changed +8
-1
lines changed Original file line number Diff line number Diff line change 9
9
# port for http, default is 80. If https enabled, this port will redirect to https port
10
10
port: 80
11
11
12
- # https related config
12
+ # https related config
13
13
https:
14
14
# https port for harbor, default is 443
15
15
port: 443
16
16
# The path of cert and key files for nginx
17
+ # For Let's Encrypt, this is typically /etc/letsencrypt/live/<your-domain>/fullchain.pem
17
18
certificate: /your/certificate/path
19
+ # The path of private key for nginx
20
+ # For Let's Encrypt, this is typically /etc/letsencrypt/live/<your-domain>/privkey.pem
18
21
private_key: /your/private/key/path
22
+
23
+ # When set to true, Harbor will only support strong SSL ciphers.
24
+ # No special prerequisites are required from Harbor's side. However, ensure your clients
25
+ # (e.g., Docker CLI, web browsers) support modern TLS 1.2+ ciphers to avoid connection issues.
19
26
# enable strong ssl ciphers (default: false)
20
27
# strong_ssl_ciphers: false
21
28
You can’t perform that action at this time.
0 commit comments