-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathconfig.sh
67 lines (51 loc) · 2.04 KB
/
config.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
#!/bin/bash
set -a
source .env
# Export variables from .env
export NGINX_HOST=${NGINX_HOST}
export CERTBOT_MAIL=${CERTBOT_MAIL}
export MYSQL_HOST=${MYSQL_HOST}
export MYSQL_DATABASE=${MYSQL_DATABASE}
export MYSQL_ROOT_USER=${MYSQL_ROOT_USER}
export MYSQL_ROOT_PASSWORD=${MYSQL_ROOT_PASSWORD}
export MYSQL_USER=${MYSQL_USER}
export MYSQL_PASSWORD=${MYSQL_PASSWORD}
# Unlink default
sudo unlink /etc/nginx/sites-enabled/default
# Files & rights for letsencrypt
sudo mkdir -p /var/lib/letsencrypt/.well-known
sudo chgrp www-data /var/lib/letsencrypt
sudo chmod g+s /var/lib/letsencrypt
sudo cp letsencrypt.conf /etc/nginx/snippets/letsencrypt.conf
# Create directory for host
sudo mkdir -p /var/www/${NGINX_HOST}/public
# Replace variables
envsubst "$(printf '${%s} ' $(env | sed 's/=.*//'))" <./nginx.conf.template >/etc/nginx/sites-available/nginx.conf
# Copy to virtual host
sudo cp /etc/nginx/sites-available/nginx.conf /etc/nginx/sites-available/${NGINX_HOST}
# Symlink
sudo ln -s /etc/nginx/sites-available/${NGINX_HOST} /etc/nginx/sites-enabled/
# Reload nginx
sudo nginx -t
sudo service nginx reload
# Generating Certificate
sudo certbot certonly --webroot --non-interactive --agree-tos --email [email protected] \
-w /var/www/${NGINX_HOST}/public -d ${NGINX_HOST} -d www.${NGINX_HOST}
# Replace variables for ssl Virtual Host
envsubst "$(printf '${%s} ' $(env | sed 's/=.*//'))" <./nginx-ssl.conf.template >/etc/nginx/sites-available/nginx-ssl.conf
# Copy to Virtual Host
sudo cp /etc/nginx/sites-available/nginx-ssl.conf /etc/nginx/sites-available/${NGINX_HOST}
# Reload nginx
sudo nginx -t
sudo service nginx reload
sudo certbot renew --dry-run
# Copy index to domain path
## Here you can copy your project into public folder
sudo cp ./index.php /var/www/${NGINX_HOST}/public
# .well-known directory
sudo mkdir /var/www/${NGINX_HOST}/public/.well-known
sudo chown www-data:www-data -R /var/www/${NGINX_HOST}/public/.well-known
sudo chmod 755 -R /var/www/${NGINX_HOST}/public/.well-known
# Check for errors & reload
sudo nginx -t
sudo service nginx reload