12 lines
375 B
Text
12 lines
375 B
Text
|
#!/bin/sh
|
||
|
|
||
|
# This is needed for containers that don't start nginx using init script.
|
||
|
install -d -m 755 -o nginx -g nginx /run/nginx || true
|
||
|
|
||
|
# Install config with the default http server to the new location (since 1.18.0-r13).
|
||
|
if ! [ -e /etc/nginx/http.d/default.conf ]; then
|
||
|
install -m644 /usr/share/nginx/http-default_server.conf /etc/nginx/http.d/default.conf
|
||
|
fi
|
||
|
|
||
|
exit 0
|