mirror of
https://github.com/ail-project/ail-framework.git
synced 2024-11-13 01:58:22 +00:00
Added whole config in config.sample
This commit is contained in:
parent
0d16a8beb7
commit
a4595010c0
1 changed files with 15 additions and 7 deletions
|
@ -1,5 +1,7 @@
|
||||||
[Directories]
|
[Directories]
|
||||||
bloomfilters = Blooms
|
bloomfilters = Blooms
|
||||||
|
#Duplicate_ssdeep
|
||||||
|
dicofilters = Dicos
|
||||||
pastes = PASTES
|
pastes = PASTES
|
||||||
|
|
||||||
wordtrending_csv = var/www/static/csv/wordstrendingdata
|
wordtrending_csv = var/www/static/csv/wordstrendingdata
|
||||||
|
@ -15,22 +17,23 @@ domainstrending_csv = var/www/static/csv/domainstrendingdata
|
||||||
|
|
||||||
##### Flask #####
|
##### Flask #####
|
||||||
[Flask]
|
[Flask]
|
||||||
#Number of minutes displayed for the number of processed pastes.
|
|
||||||
minute_processed_paste = 10
|
|
||||||
|
|
||||||
#Maximum number of character to display in the toolip
|
#Maximum number of character to display in the toolip
|
||||||
max_preview_char = 250
|
max_preview_char = 250
|
||||||
#Maximum number of character to display in the modal
|
#Maximum number of character to display in the modal
|
||||||
max_preview_modal = 800
|
max_preview_modal = 800
|
||||||
#Default number of header to display in trending graphs
|
#Default number of header to display in trending graphs
|
||||||
default_display = 10
|
default_display = 10
|
||||||
|
#Number of minutes displayed for the number of processed pastes.
|
||||||
|
minute_processed_paste = 10
|
||||||
|
|
||||||
#### Modules ####
|
#### Modules ####
|
||||||
[Modules_Duplicates]
|
[Modules_Duplicates]
|
||||||
#Number of month to look back
|
#Number of month to look back
|
||||||
maximum_month_range = 3
|
maximum_month_range = 3
|
||||||
#The value where two pastes are considerate duplicate.
|
#The value where two pastes are considerate duplicate for ssdeep.
|
||||||
threshold_duplicate = 50
|
threshold_duplicate_ssdeep = 50
|
||||||
|
#The value where two pastes are considerate duplicate for tlsh.
|
||||||
|
threshold_duplicate_tlsh = 100
|
||||||
#Minimum size of the paste considered
|
#Minimum size of the paste considered
|
||||||
min_paste_size = 0.3
|
min_paste_size = 0.3
|
||||||
|
|
||||||
|
@ -57,6 +60,11 @@ port = 6379
|
||||||
db = 1
|
db = 1
|
||||||
|
|
||||||
##### LevelDB #####
|
##### LevelDB #####
|
||||||
|
[Redis_Level_DB_Curve]
|
||||||
|
host = localhost
|
||||||
|
port = 3016
|
||||||
|
db = 0
|
||||||
|
|
||||||
[Redis_Level_DB]
|
[Redis_Level_DB]
|
||||||
host = localhost
|
host = localhost
|
||||||
port = 2016
|
port = 2016
|
||||||
|
|
Loading…
Reference in a new issue