You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
14 lines
296 B
14 lines
296 B
3 years ago
|
#!/bin/sh
|
||
|
|
||
|
# Exit at first error
|
||
|
set -e
|
||
|
|
||
|
# Fill the varibles in default.template and put the result in default.conf
|
||
|
envsubst "`env | awk -F = '{printf \" $$%s\", $$1}'`" < \
|
||
|
/etc/nginx/nginx.template > \
|
||
|
/etc/nginx/nginx.conf
|
||
|
|
||
|
cat /etc/nginx/nginx.conf
|
||
|
|
||
|
nginx -g 'daemon off;'
|