Skip to content

Commit 94ca49c

Browse files
committed
feat: Add clarifying comments to harbor.yml.tpl
Signed-off-by: chethanm99 <chethanm1399@gmail.com>
1 parent 2faff8e commit 94ca49c

File tree

1 file changed

+8
-1
lines changed

1 file changed

+8
-1
lines changed

make/harbor.yml.tmpl

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,13 +9,20 @@ http:
99
# port for http, default is 80. If https enabled, this port will redirect to https port
1010
port: 80
1111

12-
# https related config
12+
# https related config
1313
https:
1414
# https port for harbor, default is 443
1515
port: 443
1616
# The path of cert and key files for nginx
17+
# For Let's Encrypt, this is typically /etc/letsencrypt/live/<your-domain>/fullchain.pem
1718
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
1821
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.
1926
# enable strong ssl ciphers (default: false)
2027
# strong_ssl_ciphers: false
2128

0 commit comments

Comments
 (0)