mirror of
https://github.com/nextcloud/docker.git
synced 2025-03-15 10:55:09 +01:00
10 lines
230 B
Text
10 lines
230 B
Text
|
#!/usr/bin/env bash
|
||
|
# ##
|
||
|
# file name: /usr/local/bin/nginx-foreground
|
||
|
# Author: Malanik Jan
|
||
|
# Email: malanik (_dot_) jan (_at_) gmail (_dot_) com
|
||
|
# Description: start Nginx in foreground
|
||
|
# ##
|
||
|
set -xe
|
||
|
exec nginx -g 'daemon off;'
|