From f31605a8dfc6087fde555535fb9a9c2b3c73fd44 Mon Sep 17 00:00:00 2001 From: Yorhel Date: Wed, 21 May 2014 09:25:39 +0200 Subject: Added a config_example.pl --- data/config_example.pl | 35 +++++++++++++++++++++++++++++++++++ 1 file changed, 35 insertions(+) create mode 100644 data/config_example.pl diff --git a/data/config_example.pl b/data/config_example.pl new file mode 100644 index 00000000..68c12145 --- /dev/null +++ b/data/config_example.pl @@ -0,0 +1,35 @@ +package VNDB; + +# This file is used to override config options in global.pl. +# You can override anything you want. + +%O = ( + %O, + db_login => [ 'dbi:Pg:dbname=', '', '' ], + logfile => $ROOT.'/err.log', + xml_pretty => 0, + log_queries => 0, + debug => 1, +); + +%S = ( + %S, + url => 'http://your.site.root/', + url_static => 'http://your.static.site.root/', + global_salt => '', + form_salt => '', +); + + +# Uncomment to disable certain features of Multi + +#$M{modules}{API} = {}; +#$M{modules}{APIDump} = {}; + +#$M{modules}{IRC} = { +# nick => 'MyVNDBBot', +# server => 'irc.synirc.net', +# channels => [ '#vndb' ], +# pass => '', +# masters => [ 'yorhel!~Ayo@your.hell' ], +#}; -- cgit v1.2.3