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