7 lines
95 B
Bash
7 lines
95 B
Bash
|
|
#!/bin/sh
|
||
|
|
|
||
|
|
set -eu
|
||
|
|
set -x
|
||
|
|
|
||
|
|
/usr/sbin/nginx -g "daemon off;" >> /var/log/service-nginx.log 2>&1
|