mirror of
https://codeberg.org/grunfink/snac2.git
synced 2024-11-09 19:50:26 +03:00
4afa513dce
docker-compose build && docker-compose up
16 lines
516 B
Bash
Executable File
16 lines
516 B
Bash
Executable File
cd /etc/nginx/http.d;
|
|
export CRT="${CRT:=nginx-selfsigned.crt}";
|
|
if [ -f "/etc/ssl/certs/$CRT" ]
|
|
then
|
|
# set crt file in the default.conf file
|
|
sed -i "/ssl_certificate \//c\\\tssl_certificate \/etc\/ssl\/certs\/$CRT;" default.conf;
|
|
fi
|
|
export KEY="${KEY:=nginx-selfsigned.key}";
|
|
if [ -f "/etc/ssl/private/$KEY" ]
|
|
then
|
|
# set key file in the default.conf file
|
|
sed -i "/ssl_certificate_key \//c\\\tssl_certificate_key \/etc\/ssl\/private\/$KEY;" default.conf;
|
|
fi
|
|
nginx -g 'daemon off;'; nginx -s reload;
|
|
|