forked from eduvpn/documentation
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdeploy_debian.sh
executable file
·186 lines (142 loc) · 6.9 KB
/
deploy_debian.sh
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
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
#!/bin/sh
#
# Deploy a single VPN machine
#
###############################################################################
# CONFIGURATION
###############################################################################
MACHINE_HOSTNAME=$(hostname -f)
# DNS name of the Web Server
printf "DNS name of the Web Server [%s]: " "${MACHINE_HOSTNAME}"; read -r WEB_FQDN
WEB_FQDN=${WEB_FQDN:-${MACHINE_HOSTNAME}}
###############################################################################
# SOFTWARE
###############################################################################
apt update
# until ALL composer.json of the packages using sqlite have "ext-sqlite3" we'll
# install it manually here...
DEBIAN_FRONTEND=noninteractive apt install -y apt-transport-https curl \
apache2 php-fpm pwgen iptables-persistent sudo gnupg php-sqlite3 \
lsb-release
DEBIAN_CODE_NAME=$(/usr/bin/lsb_release -cs)
PHP_VERSION=$(/usr/sbin/phpquery -V)
curl -o /etc/apt/trusted.gpg.d/eduVPN.asc https://repo.eduvpn.org/v2/deb/debian-20200817.key
echo "deb https://repo.eduvpn.org/v2/deb ${DEBIAN_CODE_NAME} main" > /etc/apt/sources.list.d/eduVPN.list
# enable dev repo if requested
if [ "${VPN_DEV_REPO}" = 1 ]; then
curl -o /etc/apt/trusted.gpg.d/fkooman.asc https://repo.tuxed.net/[email protected]
echo "deb https://repo.tuxed.net/eduVPN/dev/deb ${DEBIAN_CODE_NAME} main" | tee -a /etc/apt/sources.list.d/eduVPN.list
fi
apt update
# install software (VPN packages)
DEBIAN_FRONTEND=noninteractive apt install -y vpn-server-node vpn-server-api \
vpn-user-portal vpn-maint-scripts
###############################################################################
# CERTIFICATE
###############################################################################
# generate self signed certificate and key
openssl req \
-nodes \
-subj "/CN=${WEB_FQDN}" \
-x509 \
-sha256 \
-newkey rsa:2048 \
-keyout "/etc/ssl/private/${WEB_FQDN}.key" \
-out "/etc/ssl/certs/${WEB_FQDN}.crt" \
-days 90
###############################################################################
# APACHE
###############################################################################
a2enmod ssl headers rewrite proxy_fcgi setenvif
a2dismod status
a2enconf php${PHP_VERSION}-fpm
# VirtualHost
cp resources/ssl.debian.conf /etc/apache2/mods-available/ssl.conf
cp resources/vpn.example.debian.conf "/etc/apache2/sites-available/${WEB_FQDN}.conf"
cp resources/localhost.debian.conf /etc/apache2/sites-available/localhost.conf
# update hostname
sed -i "s/vpn.example/${WEB_FQDN}/" "/etc/apache2/sites-available/${WEB_FQDN}.conf"
a2enconf vpn-server-api vpn-user-portal
a2ensite "${WEB_FQDN}" localhost
a2dissite 000-default
###############################################################################
# VPN-SERVER-API
###############################################################################
# update hostname of VPN server
sed -i "s/vpn.example/${WEB_FQDN}/" "/etc/vpn-server-api/config.php"
# update the default IP ranges
sed -i "s|10.0.0.0/25|$(vpn-server-api-suggest-ip -4)|" "/etc/vpn-server-api/config.php"
sed -i "s|fd00:4242:4242:4242::/64|$(vpn-server-api-suggest-ip -6)|" "/etc/vpn-server-api/config.php"
# initialize the CA
sudo -u www-data vpn-server-api-init
###############################################################################
# VPN-USER-PORTAL
###############################################################################
# DB init
sudo -u www-data vpn-user-portal-init
###############################################################################
# NETWORK
###############################################################################
cat << EOF > /etc/sysctl.d/70-vpn.conf
net.ipv4.ip_forward = 1
net.ipv6.conf.all.forwarding = 1
# allow RA for IPv6 which is disabled by default when enabling IPv6 forwarding
# **REMOVE** for static IPv6 configurations!
net.ipv6.conf.all.accept_ra = 2
EOF
sysctl --system
###############################################################################
# UPDATE SECRETS
###############################################################################
# update internal API secrets from the defaults to something secure
SECRET_PORTAL_API=$(pwgen -s 32 -n 1)
SECRET_NODE_API=$(pwgen -s 32 -n 1)
sed -i "s|XXX-vpn-user-portal/vpn-server-api-XXX|${SECRET_PORTAL_API}|" "/etc/vpn-user-portal/config.php"
sed -i "s|XXX-vpn-server-node/vpn-server-api-XXX|${SECRET_NODE_API}|" "/etc/vpn-server-node/config.php"
sed -i "s|XXX-vpn-user-portal/vpn-server-api-XXX|${SECRET_PORTAL_API}|" "/etc/vpn-server-api/config.php"
sed -i "s|XXX-vpn-server-node/vpn-server-api-XXX|${SECRET_NODE_API}|" "/etc/vpn-server-api/config.php"
###############################################################################
# DAEMONS
###############################################################################
systemctl enable --now php${PHP_VERSION}-fpm
# on Debian 9 we must restart php-fpm because php-libsodium gets installed as a
# dependency which requires a restart...
systemctl restart php${PHP_VERSION}-fpm
systemctl restart apache2
###############################################################################
# OPENVPN SERVER CONFIG
###############################################################################
# NOTE: the openvpn-server systemd unit file only allows 10 OpenVPN processes
# by default!
# generate (new) OpenVPN server configuration files and start OpenVPN
vpn-maint-apply-changes
###############################################################################
# FIREWALL
###############################################################################
cp resources/firewall/iptables /etc/iptables/rules.v4
cp resources/firewall/ip6tables /etc/iptables/rules.v6
systemctl enable netfilter-persistent
systemctl restart netfilter-persistent
###############################################################################
# USERS
###############################################################################
REGULAR_USER="demo"
REGULAR_USER_PASS=$(pwgen 12 -n 1)
# the "admin" user is a special user, listed by ID to have access to "admin"
# functionality in /etc/vpn-user-portal/config.php (adminUserIdList)
ADMIN_USER="admin"
ADMIN_USER_PASS=$(pwgen 12 -n 1)
sudo -u www-data vpn-user-portal-add-user --user "${REGULAR_USER}" --pass "${REGULAR_USER_PASS}"
sudo -u www-data vpn-user-portal-add-user --user "${ADMIN_USER}" --pass "${ADMIN_USER_PASS}"
###############################################################################
# SHOW INFO
###############################################################################
echo "########################################################################"
echo "# Portal"
echo "# https://${WEB_FQDN}/"
echo "# Regular User: ${REGULAR_USER}"
echo "# Regular User Pass: ${REGULAR_USER_PASS}"
echo "#"
echo "# Admin User: ${ADMIN_USER}"
echo "# Admin User Pass: ${ADMIN_USER_PASS}"
echo "########################################################################"