summaryrefslogtreecommitdiff
path: root/data
diff options
context:
space:
mode:
Diffstat (limited to 'data')
-rw-r--r--data/config_example.pl1
-rw-r--r--data/global.pl2
2 files changed, 3 insertions, 0 deletions
diff --git a/data/config_example.pl b/data/config_example.pl
index 68c12145..6e0bbe37 100644
--- a/data/config_example.pl
+++ b/data/config_example.pl
@@ -18,6 +18,7 @@ package VNDB;
url_static => 'http://your.static.site.root/',
global_salt => '<some long unique string>',
form_salt => '<another unique string>',
+ scrypt_salt => '<yet another unique string>',
);
diff --git a/data/global.pl b/data/global.pl
index 636ab327..477574c8 100644
--- a/data/global.pl
+++ b/data/global.pl
@@ -25,6 +25,8 @@ our %S = (%S,
skin_default => 'angel',
global_salt => 'any-private-string-here',
form_salt => 'a-different-private-string-here',
+ scrypt_args => [ 131072, 8, 1 ], # N, r, p
+ scrypt_salt => 'another-random-string',
regen_static => 0,
source_url => 'http://git.blicky.net/vndb.git/?h=master',
admin_email => 'contact@vndb.org',