aboutsummaryrefslogtreecommitdiff
path: root/services/docker/nginx/nginx-wrapper.bash
blob: c848287a4d9ac059f7e3985e7cf6f03971eeef34 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
#!/usr/bin/bash

set -e -o pipefail

die() {
  echo "$@" >&2
  exit 1
}

[[ -n "$CRUPEST_DOMAIN" ]] || die "CRUPEST_DOMAIN is not set. It is used as root domain."
[[ -n "$CRUPEST_GITHUB" ]] || die "CRUPEST_GITHUB is not set. It is used as GitHub redirection."
[[ -n "$CRUPEST_V2RAY_PATH" ]] || die "CRUPEST_V2RAY_PATH is not set. It is used as v2ray tunnel endpoint."

/app/certbot.bash &

/docker-entrypoint.sh nginx "-g" "daemon off;"