view host/update.sh @ 1631:35c626c06dd5

add startup scripts for mac os
author fffilimonov
date Mon, 13 Dec 2021 09:14:52 +0000
parents b735ed134662
children 0344a535b1db
line wrap: on
line source

#!/bin/bash

set -e

./stop.sh

echo Updating hg
hg pull -u

../scripts/build-luan.sh

mkdir -p local
mkdir -p logs
rm -f logs/*
hg identify >logs/changeset.txt

if [ ! -f local/leKey.txt ]; then
  echo Register letsencrypt
  ./acme.sh --register-account --cert-home ./sites --config-home local/letsencrypt/config 2>&1 | grep 'ACCOUNT_THUMBPRINT' | awk -F "'" '{print $2}' > local/leKey.txt;
fi;

cp startup/mime.types local/mime.types;
luan startup/nginx.conf.luan $(pwd) $(whoami) $(id -gn) > local/nginx.conf
luan startup/nginx.default.conf.luan $(pwd) $(cat local/leKey.txt) > local/nginx.default.conf

echo Starting...
./start.sh