This repository was archived by the owner on May 2, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 10
Expand file tree
/
Copy pathwebhostconfig.php.dist
More file actions
31 lines (31 loc) · 1.46 KB
/
webhostconfig.php.dist
File metadata and controls
31 lines (31 loc) · 1.46 KB
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
28
29
30
31
<?php
$hosts = array();
//Define hosts:
/* Template:
$hosts[''] = array(
'name' => "", //Set the name to be displayed in headers
'asns' => array( '' ), //List of ASNs
'searchterms' => array( '' ), //List of items to search for in the whois
'blockname' => '' ); //Name to display in the block message
*/
$hosts['azure'] = array(
'name' => "Microsoft Azure", //Set the name to be displayed in headers
'asns' => array( 'azure' ), //List of ASNs
'searchterms' => array( ), //List of items to search for in the whois
'blockname' => 'Microsoft Azure' ); //Name to display in the block message
$hosts['amazon'] = array(
'name' => "Amazon AWS", //Set the name to be displayed in headers
'asns' => array( 'amazon' ), //List of ASNs
'searchterms' => array( ), //List of items to search for in the whois
'blockname' => 'Amazon AWS' ); //Name to display in the block message
$hosts['google'] = array(
'name' => "Google Cloud", //Set the name to be displayed in headers
'asns' => array( 'google' ), //List of ASNs
'searchterms' => array( ), //List of items to search for in the whois
'blockname' => 'Google Cloud' ); //Name to display in the block message
$hosts['digitalocean'] = array(
'name' => "DigitalOcean", //Set the name to be displayed in headers
'asns' => array( '14061' ), //List of ASNs
'searchterms' => array( 'digitalocean', 'serverstack' ), //List of items to search for in the whois
'blockname' => 'DigitalOcean' ); //Name to display in the block message
?>