├── .app_version ├── .editorconfig ├── .gitattributes ├── .gitignore ├── CHANGELOG.md ├── LICENSE.md ├── README.md ├── apache-to-nobody.sh ├── app-install.sh ├── apps ├── .gitignore ├── README.md ├── codeigniter4 │ ├── rewrite.conf │ └── template-server.conf ├── default │ └── template-server.conf ├── deny.conf ├── fastcgi-php-html.conf ├── fastcgi-php.conf ├── gnuboard4 │ ├── common.conf │ ├── deny.conf │ ├── install.sh │ ├── plugin-buldang.conf │ ├── plugin-mw.conf │ └── template-server.conf ├── gnuboard5 │ ├── common.conf │ ├── deny.conf │ ├── install.sh │ ├── template-server.conf │ └── update.sh ├── laravel │ ├── rewrite.conf │ └── template-server.conf ├── laravel51 │ ├── common.conf │ ├── install.sh │ ├── rewrite.conf │ └── template-server.conf ├── laravel52 │ ├── common.conf │ ├── install.sh │ ├── rewrite.conf │ └── template-server.conf ├── laravel53 │ ├── common.conf │ ├── install.sh │ ├── rewrite.conf │ └── template-server.conf ├── laravel54 │ ├── install.sh │ ├── rewrite.conf │ └── template-server.conf ├── laravel55 │ ├── install.sh │ ├── rewrite.conf │ └── template-server.conf ├── laravel56 │ ├── install.sh │ ├── rewrite.conf │ └── template-server.conf ├── laravel57 │ ├── install.sh │ ├── rewrite.conf │ └── template-server.conf ├── laravel58 │ ├── install.sh │ ├── rewrite.conf │ └── template-server.conf ├── laravel6 │ ├── install.sh │ ├── rewrite.conf │ └── template-server.conf ├── phpmyadmin │ ├── common.conf │ ├── deny.conf │ ├── install.sh │ └── template-server.conf ├── wordpress │ ├── common.conf │ ├── deny.conf │ ├── install.sh │ ├── rewrite.conf │ └── template-server.conf └── xe1 │ ├── common.conf │ ├── deny.conf │ ├── install.sh │ ├── rewrite.conf │ ├── template-server.conf │ └── update.sh ├── includes ├── function.inc.sh └── message.inc.sh ├── install.sh ├── letsencrypt ├── php79-certbot-auto-renew ├── php79 │ ├── ssl-hosting.conf │ ├── ssl-legacy.conf │ ├── ssl-modern.conf │ ├── ssl-stable.conf │ └── well-known.conf ├── template-server-1.25.1.conf └── template-server.conf ├── locks └── .gitignore ├── mariadb ├── centos6 │ └── MariaDB.repo ├── centos7 │ └── MariaDB.repo └── z-php79.cnf ├── nginx-to-nobody.sh ├── nginx ├── 0-php79.conf ├── 1-fastcgi-php53.conf ├── 1-fastcgi-php54.conf ├── 1-fastcgi-php55.conf ├── 1-fastcgi-php56.conf ├── 1-fastcgi-php70.conf ├── 1-fastcgi-php71.conf ├── 1-fastcgi-php72.conf ├── 1-fastcgi-php73.conf ├── 1-fastcgi-php74.conf ├── 1-fastcgi-php80.conf ├── 1-fastcgi-php81.conf ├── 1-fastcgi-php82.conf ├── 1-fastcgi-php83.conf ├── 1-fastcgi-php84.conf └── rocky8 │ └── nginx.repo ├── php ├── 53 │ ├── compile │ │ ├── 10-opcache.ini │ │ ├── php-fpm.conf │ │ └── php53-php-fpm.service │ └── z-php79.ini ├── 70 │ └── z-php79.ini ├── 80 │ └── z-php79.ini └── ioncube-loader-install.sh ├── scripts ├── centos6-php53-install.sh ├── centos7-php53-install.sh ├── dev-tools-install.sh ├── init.sh ├── letsencrypt-install.sh ├── lm-sensors-install.sh ├── mariadb-install.sh ├── mariadb-repo-install.sh ├── nginx-install.sh ├── password-generate.sh ├── php-cli-version-set.sh ├── php-composer-install.sh ├── php5-remi-install.sh ├── php7-remi-install.sh ├── php8-remi-install.sh ├── remi-repo-install.sh ├── selinux-disable.sh ├── smartd-install.sh └── timezone.sh ├── self-update.sh ├── ssl-install.sh ├── stack.defaults.conf ├── status.sh └── user-add.sh /.app_version: -------------------------------------------------------------------------------- 1 | 1.5.0 2 | -------------------------------------------------------------------------------- /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php79/stack/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- 1 | # Enforce Unix newlines 2 | * text eol=lf -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | .idea/ 2 | stack.conf 3 | .my.cnf 4 | -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php79/stack/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php79/stack/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php79/stack/HEAD/README.md -------------------------------------------------------------------------------- /apache-to-nobody.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php79/stack/HEAD/apache-to-nobody.sh -------------------------------------------------------------------------------- /app-install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php79/stack/HEAD/app-install.sh -------------------------------------------------------------------------------- /apps/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php79/stack/HEAD/apps/.gitignore -------------------------------------------------------------------------------- /apps/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php79/stack/HEAD/apps/README.md -------------------------------------------------------------------------------- /apps/codeigniter4/rewrite.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php79/stack/HEAD/apps/codeigniter4/rewrite.conf -------------------------------------------------------------------------------- /apps/codeigniter4/template-server.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php79/stack/HEAD/apps/codeigniter4/template-server.conf -------------------------------------------------------------------------------- /apps/default/template-server.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php79/stack/HEAD/apps/default/template-server.conf -------------------------------------------------------------------------------- /apps/deny.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php79/stack/HEAD/apps/deny.conf -------------------------------------------------------------------------------- /apps/fastcgi-php-html.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php79/stack/HEAD/apps/fastcgi-php-html.conf -------------------------------------------------------------------------------- /apps/fastcgi-php.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php79/stack/HEAD/apps/fastcgi-php.conf -------------------------------------------------------------------------------- /apps/gnuboard4/common.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php79/stack/HEAD/apps/gnuboard4/common.conf -------------------------------------------------------------------------------- /apps/gnuboard4/deny.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php79/stack/HEAD/apps/gnuboard4/deny.conf -------------------------------------------------------------------------------- /apps/gnuboard4/install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php79/stack/HEAD/apps/gnuboard4/install.sh -------------------------------------------------------------------------------- /apps/gnuboard4/plugin-buldang.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php79/stack/HEAD/apps/gnuboard4/plugin-buldang.conf -------------------------------------------------------------------------------- /apps/gnuboard4/plugin-mw.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php79/stack/HEAD/apps/gnuboard4/plugin-mw.conf -------------------------------------------------------------------------------- /apps/gnuboard4/template-server.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php79/stack/HEAD/apps/gnuboard4/template-server.conf -------------------------------------------------------------------------------- /apps/gnuboard5/common.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php79/stack/HEAD/apps/gnuboard5/common.conf -------------------------------------------------------------------------------- /apps/gnuboard5/deny.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php79/stack/HEAD/apps/gnuboard5/deny.conf -------------------------------------------------------------------------------- /apps/gnuboard5/install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php79/stack/HEAD/apps/gnuboard5/install.sh -------------------------------------------------------------------------------- /apps/gnuboard5/template-server.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php79/stack/HEAD/apps/gnuboard5/template-server.conf -------------------------------------------------------------------------------- /apps/gnuboard5/update.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php79/stack/HEAD/apps/gnuboard5/update.sh -------------------------------------------------------------------------------- /apps/laravel/rewrite.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php79/stack/HEAD/apps/laravel/rewrite.conf -------------------------------------------------------------------------------- /apps/laravel/template-server.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php79/stack/HEAD/apps/laravel/template-server.conf -------------------------------------------------------------------------------- /apps/laravel51/common.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php79/stack/HEAD/apps/laravel51/common.conf -------------------------------------------------------------------------------- /apps/laravel51/install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php79/stack/HEAD/apps/laravel51/install.sh -------------------------------------------------------------------------------- /apps/laravel51/rewrite.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php79/stack/HEAD/apps/laravel51/rewrite.conf -------------------------------------------------------------------------------- /apps/laravel51/template-server.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php79/stack/HEAD/apps/laravel51/template-server.conf -------------------------------------------------------------------------------- /apps/laravel52/common.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php79/stack/HEAD/apps/laravel52/common.conf -------------------------------------------------------------------------------- /apps/laravel52/install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php79/stack/HEAD/apps/laravel52/install.sh -------------------------------------------------------------------------------- /apps/laravel52/rewrite.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php79/stack/HEAD/apps/laravel52/rewrite.conf -------------------------------------------------------------------------------- /apps/laravel52/template-server.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php79/stack/HEAD/apps/laravel52/template-server.conf -------------------------------------------------------------------------------- /apps/laravel53/common.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php79/stack/HEAD/apps/laravel53/common.conf -------------------------------------------------------------------------------- /apps/laravel53/install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php79/stack/HEAD/apps/laravel53/install.sh -------------------------------------------------------------------------------- /apps/laravel53/rewrite.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php79/stack/HEAD/apps/laravel53/rewrite.conf -------------------------------------------------------------------------------- /apps/laravel53/template-server.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php79/stack/HEAD/apps/laravel53/template-server.conf -------------------------------------------------------------------------------- /apps/laravel54/install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php79/stack/HEAD/apps/laravel54/install.sh -------------------------------------------------------------------------------- /apps/laravel54/rewrite.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php79/stack/HEAD/apps/laravel54/rewrite.conf -------------------------------------------------------------------------------- /apps/laravel54/template-server.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php79/stack/HEAD/apps/laravel54/template-server.conf -------------------------------------------------------------------------------- /apps/laravel55/install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php79/stack/HEAD/apps/laravel55/install.sh -------------------------------------------------------------------------------- /apps/laravel55/rewrite.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php79/stack/HEAD/apps/laravel55/rewrite.conf -------------------------------------------------------------------------------- /apps/laravel55/template-server.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php79/stack/HEAD/apps/laravel55/template-server.conf -------------------------------------------------------------------------------- /apps/laravel56/install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php79/stack/HEAD/apps/laravel56/install.sh -------------------------------------------------------------------------------- /apps/laravel56/rewrite.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php79/stack/HEAD/apps/laravel56/rewrite.conf -------------------------------------------------------------------------------- /apps/laravel56/template-server.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php79/stack/HEAD/apps/laravel56/template-server.conf -------------------------------------------------------------------------------- /apps/laravel57/install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php79/stack/HEAD/apps/laravel57/install.sh -------------------------------------------------------------------------------- /apps/laravel57/rewrite.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php79/stack/HEAD/apps/laravel57/rewrite.conf -------------------------------------------------------------------------------- /apps/laravel57/template-server.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php79/stack/HEAD/apps/laravel57/template-server.conf -------------------------------------------------------------------------------- /apps/laravel58/install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php79/stack/HEAD/apps/laravel58/install.sh -------------------------------------------------------------------------------- /apps/laravel58/rewrite.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php79/stack/HEAD/apps/laravel58/rewrite.conf -------------------------------------------------------------------------------- /apps/laravel58/template-server.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php79/stack/HEAD/apps/laravel58/template-server.conf -------------------------------------------------------------------------------- /apps/laravel6/install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php79/stack/HEAD/apps/laravel6/install.sh -------------------------------------------------------------------------------- /apps/laravel6/rewrite.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php79/stack/HEAD/apps/laravel6/rewrite.conf -------------------------------------------------------------------------------- /apps/laravel6/template-server.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php79/stack/HEAD/apps/laravel6/template-server.conf -------------------------------------------------------------------------------- /apps/phpmyadmin/common.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php79/stack/HEAD/apps/phpmyadmin/common.conf -------------------------------------------------------------------------------- /apps/phpmyadmin/deny.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php79/stack/HEAD/apps/phpmyadmin/deny.conf -------------------------------------------------------------------------------- /apps/phpmyadmin/install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php79/stack/HEAD/apps/phpmyadmin/install.sh -------------------------------------------------------------------------------- /apps/phpmyadmin/template-server.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php79/stack/HEAD/apps/phpmyadmin/template-server.conf -------------------------------------------------------------------------------- /apps/wordpress/common.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php79/stack/HEAD/apps/wordpress/common.conf -------------------------------------------------------------------------------- /apps/wordpress/deny.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php79/stack/HEAD/apps/wordpress/deny.conf -------------------------------------------------------------------------------- /apps/wordpress/install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php79/stack/HEAD/apps/wordpress/install.sh -------------------------------------------------------------------------------- /apps/wordpress/rewrite.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php79/stack/HEAD/apps/wordpress/rewrite.conf -------------------------------------------------------------------------------- /apps/wordpress/template-server.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php79/stack/HEAD/apps/wordpress/template-server.conf -------------------------------------------------------------------------------- /apps/xe1/common.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php79/stack/HEAD/apps/xe1/common.conf -------------------------------------------------------------------------------- /apps/xe1/deny.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php79/stack/HEAD/apps/xe1/deny.conf -------------------------------------------------------------------------------- /apps/xe1/install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php79/stack/HEAD/apps/xe1/install.sh -------------------------------------------------------------------------------- /apps/xe1/rewrite.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php79/stack/HEAD/apps/xe1/rewrite.conf -------------------------------------------------------------------------------- /apps/xe1/template-server.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php79/stack/HEAD/apps/xe1/template-server.conf -------------------------------------------------------------------------------- /apps/xe1/update.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php79/stack/HEAD/apps/xe1/update.sh -------------------------------------------------------------------------------- /includes/function.inc.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php79/stack/HEAD/includes/function.inc.sh -------------------------------------------------------------------------------- /includes/message.inc.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php79/stack/HEAD/includes/message.inc.sh -------------------------------------------------------------------------------- /install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php79/stack/HEAD/install.sh -------------------------------------------------------------------------------- /letsencrypt/php79-certbot-auto-renew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php79/stack/HEAD/letsencrypt/php79-certbot-auto-renew -------------------------------------------------------------------------------- /letsencrypt/php79/ssl-hosting.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php79/stack/HEAD/letsencrypt/php79/ssl-hosting.conf -------------------------------------------------------------------------------- /letsencrypt/php79/ssl-legacy.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php79/stack/HEAD/letsencrypt/php79/ssl-legacy.conf -------------------------------------------------------------------------------- /letsencrypt/php79/ssl-modern.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php79/stack/HEAD/letsencrypt/php79/ssl-modern.conf -------------------------------------------------------------------------------- /letsencrypt/php79/ssl-stable.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php79/stack/HEAD/letsencrypt/php79/ssl-stable.conf -------------------------------------------------------------------------------- /letsencrypt/php79/well-known.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php79/stack/HEAD/letsencrypt/php79/well-known.conf -------------------------------------------------------------------------------- /letsencrypt/template-server-1.25.1.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php79/stack/HEAD/letsencrypt/template-server-1.25.1.conf -------------------------------------------------------------------------------- /letsencrypt/template-server.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php79/stack/HEAD/letsencrypt/template-server.conf -------------------------------------------------------------------------------- /locks/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /mariadb/centos6/MariaDB.repo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php79/stack/HEAD/mariadb/centos6/MariaDB.repo -------------------------------------------------------------------------------- /mariadb/centos7/MariaDB.repo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php79/stack/HEAD/mariadb/centos7/MariaDB.repo -------------------------------------------------------------------------------- /mariadb/z-php79.cnf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php79/stack/HEAD/mariadb/z-php79.cnf -------------------------------------------------------------------------------- /nginx-to-nobody.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php79/stack/HEAD/nginx-to-nobody.sh -------------------------------------------------------------------------------- /nginx/0-php79.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php79/stack/HEAD/nginx/0-php79.conf -------------------------------------------------------------------------------- /nginx/1-fastcgi-php53.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php79/stack/HEAD/nginx/1-fastcgi-php53.conf -------------------------------------------------------------------------------- /nginx/1-fastcgi-php54.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php79/stack/HEAD/nginx/1-fastcgi-php54.conf -------------------------------------------------------------------------------- /nginx/1-fastcgi-php55.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php79/stack/HEAD/nginx/1-fastcgi-php55.conf -------------------------------------------------------------------------------- /nginx/1-fastcgi-php56.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php79/stack/HEAD/nginx/1-fastcgi-php56.conf -------------------------------------------------------------------------------- /nginx/1-fastcgi-php70.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php79/stack/HEAD/nginx/1-fastcgi-php70.conf -------------------------------------------------------------------------------- /nginx/1-fastcgi-php71.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php79/stack/HEAD/nginx/1-fastcgi-php71.conf -------------------------------------------------------------------------------- /nginx/1-fastcgi-php72.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php79/stack/HEAD/nginx/1-fastcgi-php72.conf -------------------------------------------------------------------------------- /nginx/1-fastcgi-php73.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php79/stack/HEAD/nginx/1-fastcgi-php73.conf -------------------------------------------------------------------------------- /nginx/1-fastcgi-php74.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php79/stack/HEAD/nginx/1-fastcgi-php74.conf -------------------------------------------------------------------------------- /nginx/1-fastcgi-php80.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php79/stack/HEAD/nginx/1-fastcgi-php80.conf -------------------------------------------------------------------------------- /nginx/1-fastcgi-php81.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php79/stack/HEAD/nginx/1-fastcgi-php81.conf -------------------------------------------------------------------------------- /nginx/1-fastcgi-php82.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php79/stack/HEAD/nginx/1-fastcgi-php82.conf -------------------------------------------------------------------------------- /nginx/1-fastcgi-php83.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php79/stack/HEAD/nginx/1-fastcgi-php83.conf -------------------------------------------------------------------------------- /nginx/1-fastcgi-php84.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php79/stack/HEAD/nginx/1-fastcgi-php84.conf -------------------------------------------------------------------------------- /nginx/rocky8/nginx.repo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php79/stack/HEAD/nginx/rocky8/nginx.repo -------------------------------------------------------------------------------- /php/53/compile/10-opcache.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php79/stack/HEAD/php/53/compile/10-opcache.ini -------------------------------------------------------------------------------- /php/53/compile/php-fpm.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php79/stack/HEAD/php/53/compile/php-fpm.conf -------------------------------------------------------------------------------- /php/53/compile/php53-php-fpm.service: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php79/stack/HEAD/php/53/compile/php53-php-fpm.service -------------------------------------------------------------------------------- /php/53/z-php79.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php79/stack/HEAD/php/53/z-php79.ini -------------------------------------------------------------------------------- /php/70/z-php79.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php79/stack/HEAD/php/70/z-php79.ini -------------------------------------------------------------------------------- /php/80/z-php79.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php79/stack/HEAD/php/80/z-php79.ini -------------------------------------------------------------------------------- /php/ioncube-loader-install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php79/stack/HEAD/php/ioncube-loader-install.sh -------------------------------------------------------------------------------- /scripts/centos6-php53-install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php79/stack/HEAD/scripts/centos6-php53-install.sh -------------------------------------------------------------------------------- /scripts/centos7-php53-install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php79/stack/HEAD/scripts/centos7-php53-install.sh -------------------------------------------------------------------------------- /scripts/dev-tools-install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php79/stack/HEAD/scripts/dev-tools-install.sh -------------------------------------------------------------------------------- /scripts/init.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php79/stack/HEAD/scripts/init.sh -------------------------------------------------------------------------------- /scripts/letsencrypt-install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php79/stack/HEAD/scripts/letsencrypt-install.sh -------------------------------------------------------------------------------- /scripts/lm-sensors-install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php79/stack/HEAD/scripts/lm-sensors-install.sh -------------------------------------------------------------------------------- /scripts/mariadb-install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php79/stack/HEAD/scripts/mariadb-install.sh -------------------------------------------------------------------------------- /scripts/mariadb-repo-install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php79/stack/HEAD/scripts/mariadb-repo-install.sh -------------------------------------------------------------------------------- /scripts/nginx-install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php79/stack/HEAD/scripts/nginx-install.sh -------------------------------------------------------------------------------- /scripts/password-generate.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php79/stack/HEAD/scripts/password-generate.sh -------------------------------------------------------------------------------- /scripts/php-cli-version-set.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php79/stack/HEAD/scripts/php-cli-version-set.sh -------------------------------------------------------------------------------- /scripts/php-composer-install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php79/stack/HEAD/scripts/php-composer-install.sh -------------------------------------------------------------------------------- /scripts/php5-remi-install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php79/stack/HEAD/scripts/php5-remi-install.sh -------------------------------------------------------------------------------- /scripts/php7-remi-install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php79/stack/HEAD/scripts/php7-remi-install.sh -------------------------------------------------------------------------------- /scripts/php8-remi-install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php79/stack/HEAD/scripts/php8-remi-install.sh -------------------------------------------------------------------------------- /scripts/remi-repo-install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php79/stack/HEAD/scripts/remi-repo-install.sh -------------------------------------------------------------------------------- /scripts/selinux-disable.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php79/stack/HEAD/scripts/selinux-disable.sh -------------------------------------------------------------------------------- /scripts/smartd-install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php79/stack/HEAD/scripts/smartd-install.sh -------------------------------------------------------------------------------- /scripts/timezone.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php79/stack/HEAD/scripts/timezone.sh -------------------------------------------------------------------------------- /self-update.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php79/stack/HEAD/self-update.sh -------------------------------------------------------------------------------- /ssl-install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php79/stack/HEAD/ssl-install.sh -------------------------------------------------------------------------------- /stack.defaults.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php79/stack/HEAD/stack.defaults.conf -------------------------------------------------------------------------------- /status.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php79/stack/HEAD/status.sh -------------------------------------------------------------------------------- /user-add.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php79/stack/HEAD/user-add.sh --------------------------------------------------------------------------------