2016-04-04 08:04:02 +02:00
|
|
|
## Configuration file of Harbor
|
|
|
|
|
2016-04-04 05:29:35 +02:00
|
|
|
#The IP address or hostname to access admin UI and registry service.
|
2016-04-04 05:20:52 +02:00
|
|
|
#DO NOT use localhost or 127.0.0.1, because Harbor needs to be accessed by external clients.
|
|
|
|
hostname = reg.mydomain.com
|
2016-04-04 08:04:02 +02:00
|
|
|
|
2016-04-04 05:29:35 +02:00
|
|
|
#The protocol for accessing the UI and token/notification service, by default it is http.
|
2016-04-04 08:13:39 +02:00
|
|
|
#It can be set to https if ssl is enabled on nginx.
|
2016-02-22 03:00:42 +01:00
|
|
|
ui_url_protocol = http
|
2016-04-04 08:04:02 +02:00
|
|
|
|
2016-04-04 08:13:39 +02:00
|
|
|
#Email account settings for sending out password resetting emails.
|
2016-04-20 13:40:19 +02:00
|
|
|
email_server = smtp.mydomain.com
|
2016-02-22 03:00:42 +01:00
|
|
|
email_server_port = 25
|
|
|
|
email_username = sample_admin@mydomain.com
|
|
|
|
email_password = abc
|
|
|
|
email_from = admin <sample_admin@mydomain.com>
|
2016-04-21 07:03:12 +02:00
|
|
|
email_ssl = false
|
2016-04-04 08:04:02 +02:00
|
|
|
|
2016-04-04 08:13:39 +02:00
|
|
|
##The password of Harbor admin, change this before any production use.
|
2016-04-20 13:40:19 +02:00
|
|
|
harbor_admin_password = Harbor12345
|
2016-04-04 08:04:02 +02:00
|
|
|
|
2016-04-04 05:29:35 +02:00
|
|
|
##By default the auth mode is db_auth, i.e. the credentials are stored in a local database.
|
|
|
|
#Set it to ldap_auth if you want to verify a user's credentials against an LDAP server.
|
2016-02-22 03:00:42 +01:00
|
|
|
auth_mode = db_auth
|
2016-04-04 08:04:02 +02:00
|
|
|
|
2016-04-04 08:13:39 +02:00
|
|
|
#The url for an ldap endpoint.
|
2016-02-22 03:00:42 +01:00
|
|
|
ldap_url = ldaps://ldap.mydomain.com
|
2016-04-04 08:04:02 +02:00
|
|
|
|
|
|
|
#The basedn template to look up a user in LDAP and verify the user's password.
|
2016-02-22 03:00:42 +01:00
|
|
|
ldap_basedn = uid=%s,ou=people,dc=mydomain,dc=com
|
2016-04-04 08:04:02 +02:00
|
|
|
|
|
|
|
#The password for the root user of mysql db, change this before any production use.
|
2016-02-22 03:00:42 +01:00
|
|
|
db_password = root123
|
2016-04-08 11:04:47 +02:00
|
|
|
|
|
|
|
#Turn on or off the self-registration feature
|
2016-03-31 12:45:26 +02:00
|
|
|
self_registration = on
|
2016-04-19 19:37:07 +02:00
|
|
|
|
2016-04-20 13:40:19 +02:00
|
|
|
#Turn on or off the customize your certicate
|
|
|
|
customize_crt = on
|
2016-04-19 19:37:07 +02:00
|
|
|
|
2016-04-20 13:40:19 +02:00
|
|
|
#fill in your certicate message
|
2016-04-25 10:08:16 +02:00
|
|
|
crt_country = CN
|
2016-04-20 13:40:19 +02:00
|
|
|
crt_state = State
|
2016-04-25 10:08:16 +02:00
|
|
|
crt_location = CN
|
|
|
|
crt_organization = organization
|
|
|
|
crt_organizationalunit = organizational unit
|
|
|
|
crt_commonname = example.com
|
|
|
|
crt_email = example@example.com
|
2016-02-22 03:00:42 +01:00
|
|
|
#####
|