mirror of
https://github.com/jokob-sk/NetAlertX.git
synced 2025-12-07 09:36:05 -08:00
6 lines
130 B
Bash
Executable File
6 lines
130 B
Bash
Executable File
#!/bin/bash
|
|
echo "Starting nginx..."
|
|
exec nginx \
|
|
-c "${NGINX_CONFIG_FILE}" \
|
|
-g "daemon off;" >> "${LOG_APP_FRONT}" 2>&1
|