source: trunk/tools/dnszones-poller/10.in-addr.arpa.conf @ 187

Revision 187, 403 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' => 'reverse',
9       
10        'zone_suffix' => '.10.in-addr.arpa.',
11       
12        'ns_domain' => '.ns.yourdomain.',
13       
14        'shema' => '10.in-addr.arpa.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.