├── .gitignore ├── LICENSE ├── README.md ├── install.sh ├── nginx-ubuntu19.sh ├── nginx-ubuntu20.sh ├── nginx ├── default-backup.conf ├── proxy.conf └── ubuntu20.conf ├── php ├── php-fpm-1gb.sh └── php7.4-fpm-1gb.sh ├── sites-available ├── 000-default.conf ├── default-ssl.conf └── php_proxy.conf └── ubuntu18.sh /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Athlon1600/php-proxy-installer/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Athlon1600/php-proxy-installer/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Athlon1600/php-proxy-installer/HEAD/README.md -------------------------------------------------------------------------------- /install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Athlon1600/php-proxy-installer/HEAD/install.sh -------------------------------------------------------------------------------- /nginx-ubuntu19.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Athlon1600/php-proxy-installer/HEAD/nginx-ubuntu19.sh -------------------------------------------------------------------------------- /nginx-ubuntu20.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Athlon1600/php-proxy-installer/HEAD/nginx-ubuntu20.sh -------------------------------------------------------------------------------- /nginx/default-backup.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Athlon1600/php-proxy-installer/HEAD/nginx/default-backup.conf -------------------------------------------------------------------------------- /nginx/proxy.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Athlon1600/php-proxy-installer/HEAD/nginx/proxy.conf -------------------------------------------------------------------------------- /nginx/ubuntu20.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Athlon1600/php-proxy-installer/HEAD/nginx/ubuntu20.conf -------------------------------------------------------------------------------- /php/php-fpm-1gb.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Athlon1600/php-proxy-installer/HEAD/php/php-fpm-1gb.sh -------------------------------------------------------------------------------- /php/php7.4-fpm-1gb.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Athlon1600/php-proxy-installer/HEAD/php/php7.4-fpm-1gb.sh -------------------------------------------------------------------------------- /sites-available/000-default.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Athlon1600/php-proxy-installer/HEAD/sites-available/000-default.conf -------------------------------------------------------------------------------- /sites-available/default-ssl.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Athlon1600/php-proxy-installer/HEAD/sites-available/default-ssl.conf -------------------------------------------------------------------------------- /sites-available/php_proxy.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Athlon1600/php-proxy-installer/HEAD/sites-available/php_proxy.conf -------------------------------------------------------------------------------- /ubuntu18.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Athlon1600/php-proxy-installer/HEAD/ubuntu18.sh --------------------------------------------------------------------------------