mirror of
https://github.com/jokob-sk/NetAlertX.git
synced 2026-04-08 19:21:37 -07:00
6 lines
130 B
Bash
6 lines
130 B
Bash
#!/bin/bash
|
|
echo "Starting nginx..."
|
|
exec nginx \
|
|
-c "${NGINX_CONFIG_FILE}" \
|
|
-g "daemon off;" >> "${LOG_APP_FRONT}" 2>&1
|