source: trunk/tools/dnszones-poller/yourdomain.conf @ 187

Revision 187, 433 bytes checked in by Ernest0x, 3 years ago (diff)

PHP 5.x fixes (mostly fixes for warnings and notices)

Line 
1<?php
2
3###########################
4# CONFIGURATION
5
6$conf = array(
7       
8        'zone_type' => 'forward',
9       
10        'zone_suffix' => '.yourdomain', // IF ZONE TYPE IS reverse LIVE IT EMPTY
11       
12        'ns_domain' => '.ns.yourdomain.',
13       
14        'shema' => 'yourdomain.schema',
15       
16        'db' => array(
17                'server' => "server.example.org",
18                'username' => "youruser",
19                'password' => "yourpassword",
20                'database' => "yourdatabase"
21                )
22               
23);
24
25###########################
26
27
28
29?>
Note: See TracBrowser for help on using the repository browser.