mirror of
https://codeberg.org/grunfink/snac2.git
synced 2024-11-10 12:00:35 +03:00
16 lines
516 B
Bash
16 lines
516 B
Bash
|
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;
|
||
|
|