10 lines
125 B
Bash
10 lines
125 B
Bash
#!/bin/sh
|
|
|
|
cat > /etc/nginx/php.conf << EOL
|
|
upstream php-handler {
|
|
server ${PHP_FPM};
|
|
}
|
|
EOL
|
|
|
|
exec nginx -g "daemon off;"
|