-
Notifications
You must be signed in to change notification settings - Fork 26
/
config.sample
70 lines (63 loc) · 2.58 KB
/
config.sample
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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
#!/bin/bash
####################################################################
# Configuration File
# Author: Coto Augosto C.
# URL: http://beecoss.com
# Created: Apr 1, 2010
####################################################################
folder_Backup=/folder_to_backup
####################################################################
# another user to don't work with root user
####################################################################
user='username'
passwd='userpass'
####################################################################
# Port to conect by SSH
####################################################################
port='22'
####################################################################
# Admin's email
####################################################################
mailAdmin='[email protected]'
####################################################################
# Mailserver
####################################################################
nameSlice="sliceName"
ipServer='xxx.xxx.xxx.xxx'
gateway='xxx.xxx.xxx.1'
mydomain='domain.tld'
# note: some times gateway is same to ipServer, but with last number .1
####################################################################
# DNS
####################################################################
zone_id='xxx' # from https://manage.slicehost.com/zones/
api_password='xxx' # from https://manage.slicehost.com/api
google_unique_string='xxx' # When you add a Domain Alias in Google Apps
# SPF records: to allow web server send emails.
# ASPMX & ALT records: to Set up email delivery
dns="
data = (
('NS', '@', 'ns1.slicehost.net.', 0),
('NS', '@', 'ns2.slicehost.net.', 0),
('NS', '@', 'ns3.slicehost.net.', 0),
('A', '$mydomain.', '$ipServer', 0),
('A', 'SUBDOMAIN_1', '$ipServer', 0),
('A', 'SUBDOMAIN_2', '$ipServer', 0),
('CNAME', google_string, 'google.com.', 0),
('CNAME', 'mail', 'ghs.google.com.', 0),
('CNAME', 'calendar', 'ghs.google.com.', 0),
('CNAME', 'docs', 'ghs.google.com.', 0),
('CNAME', 'moderator', 'ghs.google.com.', 0),
('CNAME', 'sites', 'ghs.google.com.', 0),
('CNAME', 'short', 'ghs.google.com.', 0),
('MX', '$mydomain.', 'ASPMX.L.GOOGLE.COM.', 10),
('MX', '$mydomain.', 'ALT1.ASPMX.L.GOOGLE.COM.', 20),
('MX', '$mydomain.', 'ALT2.ASPMX.L.GOOGLE.COM.', 20),
('MX', '$mydomain.', 'ASPMX2.GOOGLEMAIL.COM.', 30),
('MX', '$mydomain.', 'ASPMX3.GOOGLEMAIL.COM.', 30),
('MX', '$mydomain.', 'ASPMX4.GOOGLEMAIL.COM.', 30),
('MX', '$mydomain.', 'ASPMX5.GOOGLEMAIL.COM.', 30),
('TXT', '$mydomain.', spf_value, 0),
)
"
#note: please set SUBDOMAINS before