aboutsummaryrefslogtreecommitdiff
path: root/data/settings.pl
blob: 6b3b5aff3eee34cba4fb09fe0723038e70035e48 (plain)
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
package MasterWebInterface;

our %S = (%S, # retain options from parent script
  
  # site (for sharing options)
  site_url  => "http://master.333networks.com",
  site_name => "333networks",
  email     => 'master@333networks.com',
  
  
  # database connection
  db_login  => ["dbi:SQLite:dbname=/path/to/your/data/masterserver.db",'',''],
  
  # display
  style     => "333networks",
  
  # rotate styles
  rotate_styles => 0,
  
  # display the style selection/test box
  style_box => 0, 
  
  # do not display servers older than [seconds]
  window_time => 1800,
);

1;