├── .gitignore ├── README.md ├── cgi ├── phpcgi-5.6.sh ├── phpcgi-5.6.stpl ├── phpcgi-5.6.tpl ├── phpcgi-7.0.sh ├── phpcgi-7.0.stpl ├── phpcgi-7.0.tpl ├── phpcgi-7.1.sh ├── phpcgi-7.1.stpl ├── phpcgi-7.1.tpl ├── phpcgi-7.2.sh ├── phpcgi-7.2.stpl ├── phpcgi-7.2.tpl ├── phpcgi-7.3.sh ├── phpcgi-7.3.stpl ├── phpcgi-7.3.tpl ├── phpcgi-7.4.sh ├── phpcgi-7.4.stpl ├── phpcgi-7.4.tpl ├── phpcgi-8.0.sh ├── phpcgi-8.0.stpl └── phpcgi-8.0.tpl ├── fcgid ├── phpfcgid-5.6.sh ├── phpfcgid-5.6.stpl ├── phpfcgid-5.6.tpl ├── phpfcgid-7.0.sh ├── phpfcgid-7.0.stpl ├── phpfcgid-7.0.tpl ├── phpfcgid-7.1.sh ├── phpfcgid-7.1.stpl ├── phpfcgid-7.1.tpl ├── phpfcgid-7.2.sh ├── phpfcgid-7.2.stpl ├── phpfcgid-7.2.tpl ├── phpfcgid-7.3.sh ├── phpfcgid-7.3.stpl ├── phpfcgid-7.3.tpl ├── phpfcgid-7.4.sh ├── phpfcgid-7.4.stpl ├── phpfcgid-7.4.tpl ├── phpfcgid-8.0.sh ├── phpfcgid-8.0.stpl └── phpfcgid-8.0.tpl ├── fpm ├── php-fpm-5.6.sh ├── php-fpm-5.6.stpl ├── php-fpm-5.6.tpl ├── php-fpm-7.0.sh ├── php-fpm-7.0.stpl ├── php-fpm-7.0.tpl ├── php-fpm-7.1.sh ├── php-fpm-7.1.stpl ├── php-fpm-7.1.tpl ├── php-fpm-7.2.sh ├── php-fpm-7.2.stpl ├── php-fpm-7.2.tpl ├── php-fpm-7.3.sh ├── php-fpm-7.3.stpl ├── php-fpm-7.3.tpl ├── php-fpm-7.4.sh ├── php-fpm-7.4.stpl ├── php-fpm-7.4.tpl ├── php-fpm-8.0.sh ├── php-fpm-8.0.stpl └── php-fpm-8.0.tpl ├── screenshot ├── php.png └── php_version.png ├── vst-php-cgi.sh ├── vst-php-fcgid.sh └── vst-php-fpm.sh /.gitignore: -------------------------------------------------------------------------------- 1 | /nbproject/ 2 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rikcage/vst-php-selector/HEAD/README.md -------------------------------------------------------------------------------- /cgi/phpcgi-5.6.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rikcage/vst-php-selector/HEAD/cgi/phpcgi-5.6.sh -------------------------------------------------------------------------------- /cgi/phpcgi-5.6.stpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rikcage/vst-php-selector/HEAD/cgi/phpcgi-5.6.stpl -------------------------------------------------------------------------------- /cgi/phpcgi-5.6.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rikcage/vst-php-selector/HEAD/cgi/phpcgi-5.6.tpl -------------------------------------------------------------------------------- /cgi/phpcgi-7.0.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rikcage/vst-php-selector/HEAD/cgi/phpcgi-7.0.sh -------------------------------------------------------------------------------- /cgi/phpcgi-7.0.stpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rikcage/vst-php-selector/HEAD/cgi/phpcgi-7.0.stpl -------------------------------------------------------------------------------- /cgi/phpcgi-7.0.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rikcage/vst-php-selector/HEAD/cgi/phpcgi-7.0.tpl -------------------------------------------------------------------------------- /cgi/phpcgi-7.1.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rikcage/vst-php-selector/HEAD/cgi/phpcgi-7.1.sh -------------------------------------------------------------------------------- /cgi/phpcgi-7.1.stpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rikcage/vst-php-selector/HEAD/cgi/phpcgi-7.1.stpl -------------------------------------------------------------------------------- /cgi/phpcgi-7.1.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rikcage/vst-php-selector/HEAD/cgi/phpcgi-7.1.tpl -------------------------------------------------------------------------------- /cgi/phpcgi-7.2.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rikcage/vst-php-selector/HEAD/cgi/phpcgi-7.2.sh -------------------------------------------------------------------------------- /cgi/phpcgi-7.2.stpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rikcage/vst-php-selector/HEAD/cgi/phpcgi-7.2.stpl -------------------------------------------------------------------------------- /cgi/phpcgi-7.2.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rikcage/vst-php-selector/HEAD/cgi/phpcgi-7.2.tpl -------------------------------------------------------------------------------- /cgi/phpcgi-7.3.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rikcage/vst-php-selector/HEAD/cgi/phpcgi-7.3.sh -------------------------------------------------------------------------------- /cgi/phpcgi-7.3.stpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rikcage/vst-php-selector/HEAD/cgi/phpcgi-7.3.stpl -------------------------------------------------------------------------------- /cgi/phpcgi-7.3.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rikcage/vst-php-selector/HEAD/cgi/phpcgi-7.3.tpl -------------------------------------------------------------------------------- /cgi/phpcgi-7.4.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rikcage/vst-php-selector/HEAD/cgi/phpcgi-7.4.sh -------------------------------------------------------------------------------- /cgi/phpcgi-7.4.stpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rikcage/vst-php-selector/HEAD/cgi/phpcgi-7.4.stpl -------------------------------------------------------------------------------- /cgi/phpcgi-7.4.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rikcage/vst-php-selector/HEAD/cgi/phpcgi-7.4.tpl -------------------------------------------------------------------------------- /cgi/phpcgi-8.0.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rikcage/vst-php-selector/HEAD/cgi/phpcgi-8.0.sh -------------------------------------------------------------------------------- /cgi/phpcgi-8.0.stpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rikcage/vst-php-selector/HEAD/cgi/phpcgi-8.0.stpl -------------------------------------------------------------------------------- /cgi/phpcgi-8.0.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rikcage/vst-php-selector/HEAD/cgi/phpcgi-8.0.tpl -------------------------------------------------------------------------------- /fcgid/phpfcgid-5.6.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rikcage/vst-php-selector/HEAD/fcgid/phpfcgid-5.6.sh -------------------------------------------------------------------------------- /fcgid/phpfcgid-5.6.stpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rikcage/vst-php-selector/HEAD/fcgid/phpfcgid-5.6.stpl -------------------------------------------------------------------------------- /fcgid/phpfcgid-5.6.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rikcage/vst-php-selector/HEAD/fcgid/phpfcgid-5.6.tpl -------------------------------------------------------------------------------- /fcgid/phpfcgid-7.0.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rikcage/vst-php-selector/HEAD/fcgid/phpfcgid-7.0.sh -------------------------------------------------------------------------------- /fcgid/phpfcgid-7.0.stpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rikcage/vst-php-selector/HEAD/fcgid/phpfcgid-7.0.stpl -------------------------------------------------------------------------------- /fcgid/phpfcgid-7.0.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rikcage/vst-php-selector/HEAD/fcgid/phpfcgid-7.0.tpl -------------------------------------------------------------------------------- /fcgid/phpfcgid-7.1.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rikcage/vst-php-selector/HEAD/fcgid/phpfcgid-7.1.sh -------------------------------------------------------------------------------- /fcgid/phpfcgid-7.1.stpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rikcage/vst-php-selector/HEAD/fcgid/phpfcgid-7.1.stpl -------------------------------------------------------------------------------- /fcgid/phpfcgid-7.1.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rikcage/vst-php-selector/HEAD/fcgid/phpfcgid-7.1.tpl -------------------------------------------------------------------------------- /fcgid/phpfcgid-7.2.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rikcage/vst-php-selector/HEAD/fcgid/phpfcgid-7.2.sh -------------------------------------------------------------------------------- /fcgid/phpfcgid-7.2.stpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rikcage/vst-php-selector/HEAD/fcgid/phpfcgid-7.2.stpl -------------------------------------------------------------------------------- /fcgid/phpfcgid-7.2.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rikcage/vst-php-selector/HEAD/fcgid/phpfcgid-7.2.tpl -------------------------------------------------------------------------------- /fcgid/phpfcgid-7.3.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rikcage/vst-php-selector/HEAD/fcgid/phpfcgid-7.3.sh -------------------------------------------------------------------------------- /fcgid/phpfcgid-7.3.stpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rikcage/vst-php-selector/HEAD/fcgid/phpfcgid-7.3.stpl -------------------------------------------------------------------------------- /fcgid/phpfcgid-7.3.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rikcage/vst-php-selector/HEAD/fcgid/phpfcgid-7.3.tpl -------------------------------------------------------------------------------- /fcgid/phpfcgid-7.4.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rikcage/vst-php-selector/HEAD/fcgid/phpfcgid-7.4.sh -------------------------------------------------------------------------------- /fcgid/phpfcgid-7.4.stpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rikcage/vst-php-selector/HEAD/fcgid/phpfcgid-7.4.stpl -------------------------------------------------------------------------------- /fcgid/phpfcgid-7.4.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rikcage/vst-php-selector/HEAD/fcgid/phpfcgid-7.4.tpl -------------------------------------------------------------------------------- /fcgid/phpfcgid-8.0.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rikcage/vst-php-selector/HEAD/fcgid/phpfcgid-8.0.sh -------------------------------------------------------------------------------- /fcgid/phpfcgid-8.0.stpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rikcage/vst-php-selector/HEAD/fcgid/phpfcgid-8.0.stpl -------------------------------------------------------------------------------- /fcgid/phpfcgid-8.0.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rikcage/vst-php-selector/HEAD/fcgid/phpfcgid-8.0.tpl -------------------------------------------------------------------------------- /fpm/php-fpm-5.6.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rikcage/vst-php-selector/HEAD/fpm/php-fpm-5.6.sh -------------------------------------------------------------------------------- /fpm/php-fpm-5.6.stpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rikcage/vst-php-selector/HEAD/fpm/php-fpm-5.6.stpl -------------------------------------------------------------------------------- /fpm/php-fpm-5.6.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rikcage/vst-php-selector/HEAD/fpm/php-fpm-5.6.tpl -------------------------------------------------------------------------------- /fpm/php-fpm-7.0.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rikcage/vst-php-selector/HEAD/fpm/php-fpm-7.0.sh -------------------------------------------------------------------------------- /fpm/php-fpm-7.0.stpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rikcage/vst-php-selector/HEAD/fpm/php-fpm-7.0.stpl -------------------------------------------------------------------------------- /fpm/php-fpm-7.0.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rikcage/vst-php-selector/HEAD/fpm/php-fpm-7.0.tpl -------------------------------------------------------------------------------- /fpm/php-fpm-7.1.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rikcage/vst-php-selector/HEAD/fpm/php-fpm-7.1.sh -------------------------------------------------------------------------------- /fpm/php-fpm-7.1.stpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rikcage/vst-php-selector/HEAD/fpm/php-fpm-7.1.stpl -------------------------------------------------------------------------------- /fpm/php-fpm-7.1.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rikcage/vst-php-selector/HEAD/fpm/php-fpm-7.1.tpl -------------------------------------------------------------------------------- /fpm/php-fpm-7.2.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rikcage/vst-php-selector/HEAD/fpm/php-fpm-7.2.sh -------------------------------------------------------------------------------- /fpm/php-fpm-7.2.stpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rikcage/vst-php-selector/HEAD/fpm/php-fpm-7.2.stpl -------------------------------------------------------------------------------- /fpm/php-fpm-7.2.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rikcage/vst-php-selector/HEAD/fpm/php-fpm-7.2.tpl -------------------------------------------------------------------------------- /fpm/php-fpm-7.3.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rikcage/vst-php-selector/HEAD/fpm/php-fpm-7.3.sh -------------------------------------------------------------------------------- /fpm/php-fpm-7.3.stpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rikcage/vst-php-selector/HEAD/fpm/php-fpm-7.3.stpl -------------------------------------------------------------------------------- /fpm/php-fpm-7.3.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rikcage/vst-php-selector/HEAD/fpm/php-fpm-7.3.tpl -------------------------------------------------------------------------------- /fpm/php-fpm-7.4.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rikcage/vst-php-selector/HEAD/fpm/php-fpm-7.4.sh -------------------------------------------------------------------------------- /fpm/php-fpm-7.4.stpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rikcage/vst-php-selector/HEAD/fpm/php-fpm-7.4.stpl -------------------------------------------------------------------------------- /fpm/php-fpm-7.4.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rikcage/vst-php-selector/HEAD/fpm/php-fpm-7.4.tpl -------------------------------------------------------------------------------- /fpm/php-fpm-8.0.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rikcage/vst-php-selector/HEAD/fpm/php-fpm-8.0.sh -------------------------------------------------------------------------------- /fpm/php-fpm-8.0.stpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rikcage/vst-php-selector/HEAD/fpm/php-fpm-8.0.stpl -------------------------------------------------------------------------------- /fpm/php-fpm-8.0.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rikcage/vst-php-selector/HEAD/fpm/php-fpm-8.0.tpl -------------------------------------------------------------------------------- /screenshot/php.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rikcage/vst-php-selector/HEAD/screenshot/php.png -------------------------------------------------------------------------------- /screenshot/php_version.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rikcage/vst-php-selector/HEAD/screenshot/php_version.png -------------------------------------------------------------------------------- /vst-php-cgi.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rikcage/vst-php-selector/HEAD/vst-php-cgi.sh -------------------------------------------------------------------------------- /vst-php-fcgid.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rikcage/vst-php-selector/HEAD/vst-php-fcgid.sh -------------------------------------------------------------------------------- /vst-php-fpm.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rikcage/vst-php-selector/HEAD/vst-php-fpm.sh --------------------------------------------------------------------------------