9 lines
182 B
Plaintext
9 lines
182 B
Plaintext
|
#!/bin/sh
|
||
|
PHPRC=/etc/php81w/php.ini
|
||
|
PHP_FCGI_CHILDREN=4
|
||
|
PHP_FCGI_MAX_REQUESTS=1000
|
||
|
export PHPRC
|
||
|
export PHP_FCGI_CHILDREN
|
||
|
export PHP_FCGI_MAX_REQUESTS
|
||
|
exec /usr/bin/php81/bin/php-cgi
|