eduardogsilva.routerfleet/containers/nginx/nginx_entrypoint.sh

21 lines
No EOL
784 B
Bash

#!/bin/sh
CERT_DIR="/certificate"
if [ ! -f "$CERT_DIR/nginx.key" ] || [ ! -f "$CERT_DIR/nginx.pem" ]; then
echo "Creating self signed certificate..."
openssl req -x509 -newkey rsa:4096 -nodes -keyout "$CERT_DIR/nginx.key" -out "$CERT_DIR/nginx.pem" -days 3650 -subj "/CN=localhost"
else
echo "Skipping self signed certificate creation, files already exist."
fi
if [ "$HTTPS_REDIRECT_POLICY" = "never" ]; then
echo "Copying /etc/nginx/virtualhost_noredirect.conf to /etc/nginx/conf.d/default.conf..."
cp /etc/nginx/virtualhost_noredirect.conf.disabled /etc/nginx/conf.d/default.conf
else
echo "Copying /etc/nginx/virtualhost.conf to /etc/nginx/conf.d/default.conf..."
cp /etc/nginx/virtualhost.conf.disabled /etc/nginx/conf.d/default.conf
fi
exec "$@"