37 lines
		
	
	
		
			918 B
		
	
	
	
		
			YAML
		
	
	
	
	
	
			
		
		
	
	
			37 lines
		
	
	
		
			918 B
		
	
	
	
		
			YAML
		
	
	
	
	
	
# This is the default configuration file
 | 
						|
postgresql:
 | 
						|
  host: localhost
 | 
						|
  name: passbook
 | 
						|
  user: passbook
 | 
						|
  password: 'env://POSTGRES_PASSWORD'
 | 
						|
 | 
						|
redis:
 | 
						|
  host: localhost
 | 
						|
  password: ''
 | 
						|
  cache_db: 0
 | 
						|
  message_queue_db: 1
 | 
						|
 | 
						|
debug: false
 | 
						|
 | 
						|
# Error reporting, sends stacktrace to sentry.beryju.org
 | 
						|
error_reporting: false
 | 
						|
 | 
						|
domain: localhost
 | 
						|
 | 
						|
passbook:
 | 
						|
  sign_up:
 | 
						|
    # Enables signup, created users are stored in internal Database and created in LDAP if ldap.create_users is true
 | 
						|
    enabled: true
 | 
						|
  password_reset:
 | 
						|
    # Enable password reset, passwords are reset in internal Database and in LDAP if ldap.reset_password is true
 | 
						|
    enabled: true
 | 
						|
  footer:
 | 
						|
    links:
 | 
						|
      # Optionally add links to the footer on the login page
 | 
						|
      #  - name: test
 | 
						|
      #    href: https://test
 | 
						|
  # Specify which fields can be used to authenticate. Can be any combination of `username` and `email`
 | 
						|
  uid_fields:
 | 
						|
    - username
 | 
						|
    - email
 |