@@ -8,7 +8,7 @@ repo = "https://github.com/UnityHPC/unity-web-portal" ; Upstream URL for the we
88[site]
99prefix = "" ; prefix of website, no ending / should be included
1010name = "Unity HPC Account Portal" ; Name of the website
11- url = "http ://127.0.0.1:8000/ " ; URL of the website
11+ url = "https ://account.acme.edu " ; URL of the website
1212description = "The Unity HPC Account Portal is an identity management GUI for research computing" ; Description of the website
1313logo = "logo.png" ; path to logo file, in the webroot/assets/branding folder
1414terms_of_service_url = "https://github.com" ;
@@ -23,39 +23,39 @@ enable_error_handler = true ; internal use only
2323session_cleanup_idle_seconds = 1800 ; how long a session must be idle before messages and CSRF tokens are cleared
2424
2525[ldap]
26- uri = "ldap://identity" ; URI of remote LDAP server
27- user = "cn=admin,dc=unityhpc ,dc=test " ; Admin bind DN LDAP user
28- pass = "password " ; Admin bind password
26+ uri = "ldap://identity.acme.edu " ; URI of remote LDAP server
27+ user = "cn=admin,dc=acme ,dc=edu " ; Admin bind DN LDAP user
28+ pass = "CHANGE_THIS_PASSWORD_OR_ELSE " ; Admin bind password
2929custom_user_mappings_dir = "deployment/custom_user_mappings" ; for internal use only
30- basedn = "dc=unityhpc ,dc=test " ; Base search DN
31- user_ou = "ou=users,dc=unityhpc ,dc=test " ; User organizational unit (may contain more than user group)
32- usergroup_ou = "ou=user_groups,dc=unityhpc ,dc=test " ; Group organizational unit
33- pigroup_ou = "ou=pi_groups,dc=unityhpc ,dc=test " ; PI Group organizational unit
34- orggroup_ou = "ou=org_groups,dc=unityhpc ,dc=test " ; ORG group organizational unit
30+ basedn = "dc=acme ,dc=edu " ; Base search DN
31+ user_ou = "ou=users,ou=account_portal, dc=acme ,dc=edu " ; User organizational unit (may contain more than user group)
32+ usergroup_ou = "ou=user_groups,ou=account_portal, dc=acme ,dc=edu " ; Group organizational unit
33+ pigroup_ou = "ou=pi_groups,ou=account_portal, dc=acme ,dc=edu " ; PI Group organizational unit
34+ orggroup_ou = "ou=org_groups,ou=account_portal, dc=acme ,dc=edu " ; ORG group organizational unit
3535def_user_shell = "/bin/bash" ; Default shell for new users
3636offset_UIDGID = 1000000 ; start point when allocating new UID/GID pairs for a new user
3737offset_PIGID = 2000000 ; start point when allocating new GID for a new PI group
3838offset_ORGGID = 3000000 ; start point when allocating new GID for a new org group
39- user_flag_groups[admin] = "cn=web_admins ,dc=unityhpc ,dc=test" ; admin user group dn
40- user_flag_groups[disabled] = "cn=disabled,dc=unityhpc ,dc=test " ; disabled user group dn
41- user_flag_groups[idlelocked] = "cn=idlelocked,dc=unityhpc ,dc=test " ; idlelocked user group dn
42- user_flag_groups[immortal] = "cn=immortal,dc=unityhpc ,dc=test" ; immortal user group dn
43- user_flag_groups[locked] = "cn=locked,dc=unityhpc ,dc=test " ; locked user group dn
44- user_flag_groups[qualified] = "cn=unityusers ,dc=unityhpc ,dc=test" ; qualified user group (in at least one PI group)
39+ user_flag_groups[admin] = "cn=admin ,dc=acme ,dc=edu" ; admin user group dn
40+ user_flag_groups[disabled] = "cn=disabled,dc=acme ,dc=edu " ; disabled user group dn
41+ user_flag_groups[idlelocked] = "cn=idlelocked,dc=acme ,dc=edu " ; idlelocked user group dn
42+ user_flag_groups[immortal] = "cn=immortal,dc=acme ,dc=edu" ; immortal user group dn
43+ user_flag_groups[locked] = "cn=locked,dc=acme ,dc=edu " ; locked user group dn
44+ user_flag_groups[qualified] = "cn=qualified ,dc=acme ,dc=edu" ; qualified user group (in at least one PI group)
4545allowed_ssh_key_types[] = ssh-rsa
4646allowed_ssh_key_types[] = ecdsa-sha2-nistp256
4747allowed_ssh_key_types[] = ecdsa-sha2-nistp384
4848allowed_ssh_key_types[] = ecdsa-sha2-nistp521
4949allowed_ssh_key_types[] = ssh-ed25519
5050
5151[sql]
52- host = "sql " ; mariadb hostname
53- user = "unity " ; mariadb username
54- pass = "password " ; mariadb password
55- dbname = "unity " ; mariadb database name
52+ host = "localhost " ; mariadb hostname
53+ user = "account_portal " ; mariadb username
54+ pass = "CHANGE_THIS_PASSWORD_OR_ELSE " ; mariadb password
55+ dbname = "account_portal " ; mariadb database name
5656
5757[smtp]
58- host = "smtp" ; hostname of remote smtp server
58+ host = "smtp.acme.edu " ; hostname of remote smtp server
5959port = "1025" ; port of remote smtp server
6060security = "" ; leave blank for no encryption, "ssl", or "tls"
6161user = "" ; smtp username, if exists
@@ -107,14 +107,14 @@ labels[] = "Secure Menuitem 1"
107107links[] = "https://github.com/"
108108
109109[mail] ; mail addresses
110- support = "support-email@unitywebportal.test " ; Email for user support
111- support_name = "Unity Support"
112- admin = "admin-email@unitywebportal.test " ; Email that goes to admins about site messages
113- admin_name = "Unity Admins"
114- sender = "sender-email@unitywebportal.test " ; The "from" email for all messages sent from the portal
115- sender_name = "Unity Sender "
116- pi_approve = "piapproval@unitywebportal.test " ; Only PI approval messages will go to this email
117- pi_approve_name = "Unity PI Approval"
110+ support = "support-email@acme.edu " ; Email for user support
111+ support_name = "acme.edu Support"
112+ admin = "admin-email@acme.edu " ; Email that goes to admins about site messages
113+ admin_name = "acme.edu Admins"
114+ sender = "sender-email@acme.edu " ; The "from" email for all messages sent from the portal
115+ sender_name = "acme.edu account portal "
116+ pi_approve = "piapproval@acme.edu " ; Only PI approval messages will go to this email
117+ pi_approve_name = "acme.edu PI Approval"
118118send_pimesg_to_admins = false
119119
120120[webhook] ; webhook to send messages to admins
0 commit comments