Added nginx without PHP-FPM

This commit is contained in:
2020-09-03 14:56:21 +02:00
parent b591875112
commit 7f6c006d2c
9 changed files with 122 additions and 3 deletions

View File

@@ -5,6 +5,7 @@
if [ $IMODE = n ]; then
#WebServers
webservers=("Nginx:" "Will install NGINX Webserver." ON)
webservers+=("Nginx-nonphp:" "Will install NGINX Webserver without php-fpm." ON)
webservers+=("Apache:" "Will install Apache Webserver." OFF)
##Nginx
@@ -15,6 +16,12 @@ nginxCMSL+=("Nextcloud:" "Nextcloud is a suite of client-server software for cre
#Options
nginxOptions=("Redis:" "Redis caching" OFF)
##Nginx
#CMSList
nginx-nonphpCMSL=("None:" "A plain webserver will be setup." OFF)
#Options
nginx-nonphpOptions=("Redis:" "Redis caching" OFF)
##Apache
#CMSList
apacheCMSL=("None:" "A plain webserver will be setup." OFF)
@@ -22,20 +29,28 @@ apacheCMSL+=("Wordpress:" "WordPress is a content management system based on PHP
apacheCMSL+=("Nextcloud:" "Nextcloud is a suite of client-server software for creating and using file hosting services." OFF)
#Options
apacheOptions=("Redis:" "Redis caching" OFF)
fi
if [ $IMODE = l ]; then
#WebServers
webservers=("Nginx" "Apache" "Quit")
webservers=("Nginx" "Nginx-nonphp" "Apache" "Quit")
##Nginx
#CMSList
nginxCMSL=("None" "Wordpress" "Nextcloud")
#Options
nginxOptions=("Redis:")
##Nginx-nonphp
#CMSList
nginx-nonphpCMSL=("None")
#Options
nginx-nonphpOptions=("Redis:")
##Apache
#CMSList
apacheCMSL=("None" "Wordpress" "Nextcloud")
#Options
apacheOptions=("Redis:")
fi