1
0
Fork 0
mirror of https://codeberg.org/ashley/poke.git synced 2025-07-02 08:04:23 -04:00

Move files

This commit is contained in:
Nolan Poe 2022-12-30 13:48:17 -08:00 committed by Gitea
parent 81a5d8514f
commit b0d75415f3
3 changed files with 6 additions and 7 deletions

30
entrypoint.sh Normal file
View file

@ -0,0 +1,30 @@
#!/usr/bin/bash
set -e
if [[ "$STAGING" == true ]]; then
TEST="--test-cert"
echo Using staging server!
else
TEST=""
echo Using production server!
fi
if [[ -v "HOSTNAME" && -v "EMAIL" ]]; then
echo Creating nginx config...
sed -i "s/SERVERNAME/$HOSTNAME/" /etc/nginx/conf.d/poketube.conf
echo Starting certbot
certbot run --nginx -n \
-d $HOSTNAME \
-d www.$HOSTNAME --agree-tos \
--email $EMAIL \
$TEST
echo Starting nginx
nginx -s reload
else
echo Please set HOSTNAME and/or EMAIL!
exit 1
fi
exec "$@"