-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathentrypoint.sh
executable file
·42 lines (31 loc) · 1.11 KB
/
entrypoint.sh
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
#!/usr/bin/env bash
# Setup site
cat <<EOF | tee /etc/nginx/conf.d/default.conf
server {
listen 443;
server_name ${SERVER_NAME};
client_max_body_size 1000M;
chunked_transfer_encoding on;
ssl on;
ssl_certificate ${CRT_PATH};
ssl_certificate_key ${KEY_PATH};
ssl_session_cache builtin:1000 shared:SSL:10m;
ssl_protocols TLSv1 TLSv1.1 TLSv1.2;
ssl_ciphers HIGH:!aNULL:!eNULL:!EXPORT:!CAMELLIA:!DES:!MD5:!PSK:!RC4;
ssl_prefer_server_ciphers on;
access_log /var/log/nginx/${SERVER_NAME}.access.log;
location / {
proxy_set_header Host \$host;
proxy_set_header X-Real-IP \$remote_addr;
proxy_set_header X-Forwarded-For \$proxy_add_x_forwarded_for;
proxy_set_header X-Forwarded-Proto \$scheme;
# Fix the “It appears that your reverse proxy set up is broken" error.
proxy_pass ${PROXY_PASS};
proxy_read_timeout 90;
proxy_redirect ${PROXY_PASS} https://${SERVER_NAME};
}
}
EOF
# Start nginx
echo "Starting secure nginx server..."
nginx -g "daemon off;"