-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsnorby_config.yml
62 lines (60 loc) · 1.92 KB
/
snorby_config.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
#
# Production
#
# Change the production configuration for your environment.
#
# USE THIS!
#
production:
# in case you want to run snorby under a suburi/suburl under eg. passenger:
baseuri: ''
# baseuri: '/snorby'
domain: 'demo.example.com'
wkhtmltopdf: /usr/local/bin/wkhtmltopdf
ssl: false
mailer_sender: '[email protected]'
geoip_uri: "http://geolite.maxmind.com/download/geoip/database/GeoLiteCountry/GeoIP.dat.gz"
rules:
- "/var/www/html/snort.rules"
- "/var/www/html/local.rules"
authentication_mode: database
# If timezone_search is undefined or false, searching based on time will
# use UTC times (historical behavior). If timezone_search is true
# searching will use local time.
timezone_search: true
# uncomment to set time zone to time zone of box from /usr/share/zoneinfo, e.g. "America/Cancun"
# time_zone: 'UTC'
#
# Only Use For Development
#
development:
baseuri: ''
domain: localhost:3000
wkhtmltopdf: /Users/mephux/.rvm/gems/ruby-1.9.2-p0/bin/wkhtmltopdf
ssl: false
mailer_sender: '[email protected]'
geoip_uri: "http://geolite.maxmind.com/download/geoip/database/GeoLiteCountry/GeoIP.dat.gz"
rules:
- "/var/www/html/snort.rules"
- "/var/www/html/local.rules"
authentication_mode: database
# uncomment to set time zone to time zone of box from /usr/share/zoneinfo, e.g. "America/Cancun"
# time_zone: 'UTC'
# authentication_mode: cas
# cas_config:
# base_url: https://auth.server.com.br/
# login_url: https://auth.server.com.br/login?domain=server
# logout_url: https://auth.server.com.br/logout?domain=server
#
# Only Use For Testing
#
test:
baseuri: ''
domain: localhost:3000
wkhtmltopdf: /usr/local/bin/wkhtmltopdf
mailer_sender: '[email protected]'
geoip_uri: "http://geolite.maxmind.com/download/geoip/database/GeoLiteCountry/GeoIP.dat.gz"
rules:
- "/var/www/html/snort.rules"
- "/var/www/html/local.rules"
authentication_mode: database