add nginx proxy
This commit is contained in:
Executable
+9
@@ -0,0 +1,9 @@
|
||||
#!/bin/sh
|
||||
set -euo pipefail
|
||||
set -o errexit
|
||||
|
||||
trap 'kill -SIGQUIT $PID' INT
|
||||
|
||||
# Launch httpd
|
||||
[ $# -eq 0 ] && httpd-foreground || exec "$@" &
|
||||
PID=$! && wait
|
||||
Reference in New Issue
Block a user