-
Notifications
You must be signed in to change notification settings - Fork 20
/
v1.php
27 lines (20 loc) · 854 Bytes
/
v1.php
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
<?php
/* Site Data */
$site_name = "Shadow046";
$site_description = "Provider of Quality SSH, SSL, VPN Accounts";
$site_template = "lumen"; // (flatly, darkly, sketchy, lumen, materia)
/* Server Data */
/* Format: Server_Name, IP_Address, Root_Pass, Account_Validity */
/* Example: 1=>array(1=>"Shadow046 Server 1","123.456.789","Shadow046","5"), */
$server_lists_array=array(
1=>array(1=>"Sample 1","123.123.123.123","Shadow046","5"),
2=>array(1=>"Sample 2","123.123.123.123","Shadow046","5"),
3=>array(1=>"Sample 3","123.123.123.123","Shadow046","5"),
);
/* Service Variables */
$port_ssh= '22, 143'; // SSH Ports
$port_dropbear= '443, 110'; // Dropbear Ports
$port_ssl= '442'; // SSL Ports
$port_squid= '3128, 8080, 8888'; // Squid Ports
$ovpn_client= ''.$hosts.'/client.ovpn'; // OpenVPN Client Config
?>