mirror of
https://git.digitalstudium.com/digitalstudium/gitea
synced 2023-12-29 08:06:35 +00:00
13 lines
261 B
Bash
Executable File
13 lines
261 B
Bash
Executable File
#!/bin/bash
|
|
|
|
source .env
|
|
|
|
# Copy config to nginx, substitute and reload it
|
|
sudo cp git.conf /etc/nginx/conf.d
|
|
sudo sed -i s/GITEA_HOSTNAME/$GITEA_HOSTNAME/g
|
|
sudo service nginx reload
|
|
|
|
# Get ssl certificate
|
|
sudo certbot --non-interactive --agree-tos -m $EMAIL
|
|
|