File: entrypoint.sh

package info (click to toggle)
snac2 2.75-2
  • links: PTS, VCS
  • area: main
  • in suites: trixie
  • size: 1,532 kB
  • sloc: ansic: 19,200; sh: 148; makefile: 62
file content (15 lines) | stat: -rwxr-xr-x 516 bytes parent folder | download | duplicates (5)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
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;