47 lines
		
	
	
		
			1.1 KiB
		
	
	
	
		
			YAML
		
	
	
	
	
	
			
		
		
	
	
			47 lines
		
	
	
		
			1.1 KiB
		
	
	
	
		
			YAML
		
	
	
	
	
	
| # configuration file for production environment
 | |
| 
 | |
| # only log warning and error messsages
 | |
| log: "warning"
 | |
| 
 | |
| # log message to a file in logs/
 | |
| logger: "file"
 | |
| 
 | |
| # don't consider warnings critical
 | |
| warnings: 0
 | |
| 
 | |
| # hide errors 
 | |
| show_errors: 0
 | |
| 
 | |
| # cache route resolution for maximum performance
 | |
| route_cache: 1
 | |
| 
 | |
| # database connections
 | |
| plugins:
 | |
|   DBIC:
 | |
|     # alter dsn/user/pass for your local Netdisco DB
 | |
|     netdisco:
 | |
|       schema_class: 'App::Netdisco::DB'
 | |
|       dsn: 'dbi:Pg:dbname=netdisco;host=localhost'
 | |
|       user: 'changeme'
 | |
|       pass: 'netdisco'
 | |
|       options:
 | |
|         RaiseError: 1
 | |
|         AutoCommit: 1
 | |
|     # please do not change/remove this schema unless you
 | |
|     # know what you're doing!
 | |
|     daemon:
 | |
|       schema_class: 'App::Netdisco::Daemon::DB'
 | |
|       dsn: 'dbi:SQLite:dbname=/tmp/netdisco-daemon.db'
 | |
|       options:
 | |
|         RaiseError: 1
 | |
|         AutoCommit: 1
 | |
|         sqlite_use_immediate_transaction: 1
 | |
| 
 | |
| # uncomment and set to 1 to disable authentication/login
 | |
| # no_auth: 0
 | |
| 
 | |
| # will be stripped from fqdn when displayed in the web UI
 | |
| # don't forget the leading dot
 | |
| # domain_suffix: '.example.com'
 | |
| 
 |