mirror of
https://github.com/dnscrypt/dnscrypt-server-docker
synced 2024-10-30 21:20:12 +00:00
12 lines
267 B
Bash
Executable File
12 lines
267 B
Bash
Executable File
#! /usr/bin/env bash
|
|
|
|
CONF_DIR="/opt/encrypted-dns/etc"
|
|
KEYS_DIR="/opt/encrypted-dns/etc/keys"
|
|
CONFIG_FILE="${CONF_DIR}/encrypted-dns.toml"
|
|
|
|
if [ ! -f "$KEYS_DIR/provider_name" ]; then
|
|
exit 1
|
|
fi
|
|
|
|
exec /opt/encrypted-dns/sbin/encrypted-dns --config "$CONFIG_FILE"
|