60 lines
		
	
	
		
			1.5 KiB
		
	
	
	
		
			YAML
		
	
	
	
	
	
			
		
		
	
	
			60 lines
		
	
	
		
			1.5 KiB
		
	
	
	
		
			YAML
		
	
	
	
	
	
| # configuration file for development environment
 | |
| 
 | |
| # the logger engine to use
 | |
| # console: log messages to STDOUT (your console where you started the
 | |
| #          application server)
 | |
| # file:    log message to a file in log/
 | |
| logger: "console"
 | |
| 
 | |
| # the log level for this environement
 | |
| # core is the lowest, it shows Dancer's core log messages as well as yours
 | |
| # (debug, warning and error)
 | |
| log: "debug"
 | |
| 
 | |
| # should Dancer consider warnings as critical errors?
 | |
| warnings: 1
 | |
| 
 | |
| # should Dancer show a stacktrace when an error is caught?
 | |
| show_errors: 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: 'netdisco'
 | |
|       pass: 'netdisco'
 | |
|       options:
 | |
|         RaiseError: 1
 | |
|         AutoCommit: 1
 | |
|     # please do not change/remove this schema unless you
 | |
|     # know what you are doing!
 | |
|     daemon:
 | |
|       schema_class: 'App::Netdisco::Daemon::DB'
 | |
|       dsn: 'dbi:SQLite:dbname=:memory:'
 | |
|       options:
 | |
|         RaiseError: 1
 | |
|         AutoCommit: 1
 | |
|         sqlite_use_immediate_transaction: 1
 | |
| 
 | |
| # uncomment and set to 1 to disable authentication/login
 | |
| no_auth: 1
 | |
| 
 | |
| # will be stripped from fqdn when displayed in the web UI
 | |
| # also, do not forget the leading dot
 | |
| # domain_suffix: '.example.com'
 | |
| 
 | |
| # local settings for Netdisco poller and port changes
 | |
| 
 | |
| mibhome: '/home/netdisco/netdisco-mibs'
 | |
| mibdirs:
 | |
|   - cisco
 | |
|   - rfc
 | |
|   - net-snmp
 | |
| 
 | |
| community: ['public']
 | |
| community_rw: ['private']
 | |
| 
 |