8 lines
136 B
Bash
8 lines
136 B
Bash
#!/bin/sh
|
|
rm -f /var/run/nginx.pid
|
|
mkdir -p /var/log/nginx
|
|
set -e
|
|
|
|
/etc/init.d/php7.3-fpm restart
|
|
exec /usr/sbin/nginx -g 'daemon off;'
|