mirror of
https://github.com/joglomedia/LEMPer.git
synced 2026-04-07 05:08:15 +00:00
1627 lines
62 KiB
Bash
Executable File
1627 lines
62 KiB
Bash
Executable File
#!/bin/bash
|
|
|
|
# +-------------------------------------------------------------------------+
|
|
# | Lemper Create - Simple LEMP Virtual Host Generator |
|
|
# +-------------------------------------------------------------------------+
|
|
# | Copyright (c) 2014-2021 MasEDI.Net (https://masedi.net/lemper |
|
|
# +-------------------------------------------------------------------------+
|
|
# | This source file is subject to the GNU General Public License |
|
|
# | that is bundled with this package in the file LICENSE.md. |
|
|
# | |
|
|
# | If you did not receive a copy of the license and are unable to |
|
|
# | obtain it through the world-wide-web, please send an email |
|
|
# | to license@eslabs.id so we can send you a copy immediately. |
|
|
# +-------------------------------------------------------------------------+
|
|
# | Authors: Edi Septriyanto <eslabs.id@gmail.com> |
|
|
# +-------------------------------------------------------------------------+
|
|
|
|
set -e
|
|
|
|
# Version control.
|
|
APP_NAME=$(basename "$0")
|
|
APP_VERSION="1.0.0"
|
|
CMD_PARENT="lemper-cli"
|
|
CMD_NAME="create"
|
|
|
|
# Color decorator.
|
|
RED=91
|
|
GREEN=92
|
|
YELLOW=93
|
|
|
|
##
|
|
# Helper Functions
|
|
#
|
|
function begin_color() {
|
|
color="${1}"
|
|
echo -e -n "\e[${color}m"
|
|
}
|
|
|
|
function end_color() {
|
|
echo -e -n "\e[0m"
|
|
}
|
|
|
|
function echo_color() {
|
|
color="${1}"
|
|
shift
|
|
begin_color "${color}"
|
|
echo "$@"
|
|
end_color
|
|
}
|
|
|
|
function error() {
|
|
echo_color "${RED}" -n "Error: " >&2
|
|
echo "$@" >&2
|
|
}
|
|
|
|
# Prints an error message and exits with an error code.
|
|
function fail() {
|
|
error "$@"
|
|
echo >&2
|
|
echo "For usage information, run this script with --help" >&2
|
|
exit 1
|
|
}
|
|
|
|
function status() {
|
|
echo_color "${GREEN}" "$@"
|
|
}
|
|
|
|
function warning() {
|
|
echo_color "${YELLOW}" "$@"
|
|
}
|
|
|
|
function success() {
|
|
echo_color "${GREEN}" -n "Success: " >&2
|
|
echo "$@" >&2
|
|
}
|
|
|
|
function info() {
|
|
echo_color "${YELLOW}" -n "Info: " >&2
|
|
echo "$@" >&2
|
|
}
|
|
|
|
# Run command
|
|
function run() {
|
|
if "$DRYRUN"; then
|
|
echo_color "${YELLOW}" -n "would run "
|
|
echo "$@"
|
|
else
|
|
if ! "$@"; then
|
|
local CMDSTR="$*"
|
|
error "Failure running '${CMDSTR}', exiting."
|
|
exit 1
|
|
fi
|
|
fi
|
|
}
|
|
|
|
# May need to run this as sudo!
|
|
if [ "$(id -u)" -ne 0 ]; then
|
|
error "This command can only be used by root."
|
|
exit 1
|
|
fi
|
|
|
|
# Check pre-requisite packages.
|
|
if [[ ! -f $(command -v unzip) || ! -f $(command -v git) || ! -f $(command -v rsync) ]]; then
|
|
error "${APP_NAME^} requires git, rsync, unzip, wget, please install it first!"
|
|
echo "help: sudo apt install git rsync unzip wget"
|
|
exit 1
|
|
fi
|
|
|
|
|
|
##
|
|
# Main Functions
|
|
#
|
|
|
|
##
|
|
# Show usage
|
|
# output to STDERR.
|
|
#
|
|
function show_usage {
|
|
cat <<- _EOF_
|
|
${APP_NAME^} ${APP_VERSION}
|
|
Creates Nginx virtual host (vHost) configuration file.
|
|
|
|
Requirements:
|
|
* LEMP stack setup uses [LEMPer](https://github.com/joglomedia/LEMPer)
|
|
|
|
Usage: ${CMD_PARENT} ${CMD_NAME} [options]...
|
|
${CMD_PARENT} ${CMD_NAME} -d <domain-name> -f <framework>
|
|
${CMD_PARENT} ${CMD_NAME} -d <domain-name> -f <framework> -w <webroot-path>
|
|
|
|
Options:
|
|
-4, --ipv4 <IPv4 address>
|
|
Any valid IPv4 addreess for listening on.
|
|
-6, --ipv6 <IPv6 address>
|
|
Any valid IPv6 addreess for listening on.
|
|
-d, --domain-name <server domain name>
|
|
Any valid domain name and/or sub domain name is allowed, i.e. example.app or sub.example.app.
|
|
-f, --framework <website framework>
|
|
Type of PHP web Framework and CMS, i.e. default.
|
|
Supported PHP Framework and CMS: default (vanilla PHP), framework (codeigniter, laravel,
|
|
lumen, phalcon, symfony), CMS (drupal, mautic, roundcube, sendy, wordpress, wordpress-ms).
|
|
Another framework and cms will be added soon.
|
|
-p, --php-version
|
|
PHP version for selected framework. Latest recommended PHP version is "7.4".
|
|
-u, --username <virtual-host username>
|
|
Use username added from adduseruseradd. Default user set as lemper. Do not use root user!!
|
|
-w, --webroot <web root>
|
|
Web root is an absolute path to the website root directory, i.e. /home/lemper/webapps/example.test.
|
|
|
|
-c, --enable-fastcgi-cache
|
|
Enable FastCGI cache module.
|
|
-D, --dryrun
|
|
Dry run mode, only for testing.
|
|
-F, --enable-fail2ban
|
|
Enable fail2ban filter.
|
|
-i, --install-app
|
|
Auto install application for selected framework.
|
|
-s, --enable-ssl
|
|
Enable HTTPS with Let's Encrypt free SSL certificate.
|
|
-P, --enable-pagespeed
|
|
Enable Nginx mod_pagespeed.
|
|
-W, --wildcard-domain
|
|
Enable wildcard (*) domain.
|
|
|
|
-h, --help
|
|
Print this message and exit.
|
|
-v, --version
|
|
Show version number and exit.
|
|
|
|
Example:
|
|
${CMD_PARENT} ${CMD_NAME} -u lemper -d example.com -f default -w /home/lemper/webapps/example.test
|
|
|
|
For more informations visit https://eslabs.id/lemper
|
|
Mail bug reports and suggestions to <eslabs.id@gmail.com>
|
|
_EOF_
|
|
}
|
|
|
|
##
|
|
# Output Default virtual host directive, fill with user input
|
|
# To be outputted into new file
|
|
# Work for default and WordPress site.
|
|
#
|
|
function create_vhost_default() {
|
|
if ! "${DRYRUN}"; then
|
|
cat <<- _EOF_
|
|
server {
|
|
listen 80;
|
|
listen [::]:80;
|
|
|
|
server_name ${SERVERNAME};
|
|
|
|
## SSL configuration.
|
|
#ssl_certificate /etc/letsencrypt/live/${SERVERNAME}/fullchain.pem;
|
|
#ssl_certificate_key /etc/letsencrypt/live/${SERVERNAME}/privkey.pem;
|
|
#ssl_trusted_certificate /etc/letsencrypt/live/${SERVERNAME}/fullchain.pem;
|
|
#include /etc/nginx/includes/ssl.conf;
|
|
|
|
## Log Settings.
|
|
access_log ${WEBROOT}/access_log combined buffer=32k;
|
|
error_log ${WEBROOT}/error_log error;
|
|
|
|
## Virtual host root directory.
|
|
set \$root_path "${WEBROOT}";
|
|
root \$root_path;
|
|
index index.php index.html index.htm;
|
|
|
|
## Uncomment to enable Mod PageSpeed (Nginx must be installed with mod PageSpeed).
|
|
#include /etc/nginx/includes/mod_pagespeed.conf;
|
|
|
|
# Authorizing domain.
|
|
#pagespeed Domain ${SERVERNAME};
|
|
#pagespeed Domain *.${SERVERNAME};
|
|
|
|
# Authorize CDN host below here!
|
|
##pagespeed Domain your-cdn-host;
|
|
|
|
# Map CDN host below here!
|
|
##pagespeed MapOriginDomain https://your-cdn-address https://${SERVERNAME};
|
|
|
|
# Rewrite CDN host below here!
|
|
##pagespeed MapRewriteDomain https://your-cdn-address https://${SERVERNAME};
|
|
|
|
# PageSpeed should be disabled on the WP admin/dashboard
|
|
# adjust manually to suit your custom admin URLs.
|
|
#pagespeed Disallow "*/admin/*";
|
|
#pagespeed Disallow "*/account/*";
|
|
#pagespeed Disallow "*/dashboard/*";
|
|
#pagespeed Disallow "*/wp-admin/*";
|
|
#pagespeed Disallow "*/wp-login*";
|
|
|
|
## Access control Cross-origin Resource Sharing (CORS).
|
|
set \$cors "${SERVERNAME},*.${SERVERNAME}";
|
|
|
|
# PageSpeed CORS support.
|
|
#pagespeed AddResourceHeader "Access-Control-Allow-Origin" "${SERVERNAME}";
|
|
#pagespeed AddResourceHeader "Access-Control-Allow-Origin" "*.${SERVERNAME}";
|
|
|
|
## Global directives configuration.
|
|
include /etc/nginx/includes/rules_security.conf;
|
|
include /etc/nginx/includes/rules_staticfiles.conf;
|
|
include /etc/nginx/includes/rules_restriction.conf;
|
|
|
|
## Default vhost directives configuration.
|
|
#include /etc/nginx/includes/rules_fastcgi_cache.conf;
|
|
include /etc/nginx/vhost/site_${FRAMEWORK}.conf;
|
|
|
|
## Add your custom site directives here.
|
|
|
|
## End of custom site directives.
|
|
|
|
## Pass the PHP scripts to FastCGI server listening on Unix socket.
|
|
location ~ \.php$ {
|
|
try_files \$uri =404;
|
|
|
|
fastcgi_split_path_info ^(.+\.php)(/.+)$;
|
|
fastcgi_index index.php;
|
|
|
|
# Include FastCGI Params.
|
|
include /etc/nginx/fastcgi_params;
|
|
|
|
# Include FastCGI Configs.
|
|
include /etc/nginx/includes/fastcgi.conf;
|
|
|
|
# FastCGI socket, change to fits your own socket!
|
|
fastcgi_pass unix:/run/php/php${PHP_VERSION}-fpm.${USERNAME}.sock;
|
|
|
|
# Uncomment to Enable PHP FastCGI cache.
|
|
#include /etc/nginx/includes/fastcgi_cache.conf;
|
|
}
|
|
|
|
## PHP-FPM status monitoring
|
|
location ~ ^/(status|ping)$ {
|
|
include /etc/nginx/fastcgi_params;
|
|
|
|
fastcgi_pass unix:/run/php/php${PHP_VERSION}-fpm.${USERNAME}.sock;
|
|
|
|
allow all;
|
|
auth_basic "Denied";
|
|
auth_basic_user_file /srv/.htpasswd;
|
|
}
|
|
|
|
## Uncomment to enable error page directives configuration.
|
|
include /etc/nginx/includes/error_pages.conf;
|
|
|
|
## Uncomment to enable support cgi-bin scripts using fcgiwrap (like cgi-bin in Apache).
|
|
#include /etc/nginx/includes/fcgiwrap.conf;
|
|
}
|
|
_EOF_
|
|
else
|
|
info "Vhost created in dryrun mode, no data written."
|
|
fi
|
|
}
|
|
|
|
##
|
|
# Output Drupal virtual host directive, fill with user input
|
|
# To be outputted into new file.
|
|
#
|
|
function create_vhost_drupal() {
|
|
if ! "${DRYRUN}"; then
|
|
cat <<- _EOF_
|
|
server {
|
|
listen 80;
|
|
listen [::]:80;
|
|
|
|
server_name ${SERVERNAME};
|
|
|
|
## SSL configuration.
|
|
#ssl_certificate /etc/letsencrypt/live/${SERVERNAME}/fullchain.pem;
|
|
#ssl_certificate_key /etc/letsencrypt/live/${SERVERNAME}/privkey.pem;
|
|
#ssl_trusted_certificate /etc/letsencrypt/live/${SERVERNAME}/fullchain.pem;
|
|
#include /etc/nginx/includes/ssl.conf;
|
|
|
|
## Log Settings.
|
|
access_log ${WEBROOT}/access_log combined buffer=32k;
|
|
error_log ${WEBROOT}/error_log error;
|
|
|
|
## Virtual host root directory.
|
|
set \$root_path "${WEBROOT}";
|
|
root \$root_path;
|
|
index index.php index.html index.htm;
|
|
|
|
## Uncomment to enable Mod PageSpeed (Nginx must be installed with mod PageSpeed).
|
|
#include /etc/nginx/includes/mod_pagespeed.conf;
|
|
|
|
# Authorizing domain.
|
|
#pagespeed Domain ${SERVERNAME};
|
|
#pagespeed Domain *.${SERVERNAME};
|
|
|
|
# Authorize CDN host below here!
|
|
##pagespeed Domain your-cdn-host;
|
|
|
|
# Map CDN host below here!
|
|
##pagespeed MapOriginDomain https://your-cdn-address https://${SERVERNAME};
|
|
|
|
# Rewrite CDN host below here!
|
|
##pagespeed MapRewriteDomain https://your-cdn-address https://${SERVERNAME};
|
|
|
|
# PageSpeed should be disabled on the user panel (adjust to suit custom admin URLs).
|
|
#pagespeed Disallow "*/user/*";
|
|
#pagespeed Disallow "*/account/*";
|
|
|
|
## Access control Cross-origin Resource Sharing (CORS).
|
|
set \$cors "${SERVERNAME},*.${SERVERNAME}";
|
|
|
|
# PageSpeed CORS support.
|
|
#pagespeed AddResourceHeader "Access-Control-Allow-Origin" "${SERVERNAME}";
|
|
#pagespeed AddResourceHeader "Access-Control-Allow-Origin" "*.${SERVERNAME}";
|
|
|
|
## Global directives configuration.
|
|
include /etc/nginx/includes/rules_security.conf;
|
|
include /etc/nginx/includes/rules_staticfiles.conf;
|
|
include /etc/nginx/includes/rules_restriction.conf;
|
|
|
|
## Default vhost directives configuration.
|
|
#include /etc/nginx/includes/rules_fastcgi_cache.conf;
|
|
include /etc/nginx/vhost/site_${FRAMEWORK}.conf;
|
|
|
|
## Add your custom site directives here.
|
|
|
|
## End of custom site directives.
|
|
|
|
## Pass the PHP scripts to FastCGI server listening on Unix socket.
|
|
location ~ '\.php$|^/update.php' {
|
|
fastcgi_split_path_info ^(.+\.php)(/.+)$;
|
|
fastcgi_index index.php;
|
|
|
|
# Include FastCGI Params.
|
|
include /etc/nginx/fastcgi_params;
|
|
|
|
# Include FastCGI Configs.
|
|
include /etc/nginx/includes/fastcgi.conf;
|
|
|
|
# FastCGI socket, change to fits your own socket!
|
|
fastcgi_pass unix:/run/php/php${PHP_VERSION}-fpm.${USERNAME}.sock;
|
|
|
|
# Uncomment to Enable PHP FastCGI cache.
|
|
#include /etc/nginx/includes/fastcgi_cache.conf;
|
|
}
|
|
|
|
## PHP-FPM status monitoring
|
|
location ~ ^/(status|ping)$ {
|
|
include /etc/nginx/fastcgi_params;
|
|
|
|
fastcgi_pass unix:/run/php/php${PHP_VERSION}-fpm.${USERNAME}.sock;
|
|
|
|
allow all;
|
|
auth_basic "Denied";
|
|
auth_basic_user_file /srv/.htpasswd;
|
|
}
|
|
|
|
## Uncomment to enable error page directives configuration.
|
|
include /etc/nginx/includes/error_pages.conf;
|
|
|
|
## Uncomment to enable support cgi-bin scripts using fcgiwrap (like cgi-bin in Apache).
|
|
#include /etc/nginx/includes/fcgiwrap.conf;
|
|
}
|
|
_EOF_
|
|
else
|
|
info "Vhost created in dryrun mode, no data written."
|
|
fi
|
|
}
|
|
|
|
##
|
|
# Output Laravel virtual host skeleton, fill with user input
|
|
# To be outputted into new file.
|
|
#
|
|
function create_vhost_laravel() {
|
|
if ! "${DRYRUN}"; then
|
|
cat <<- _EOF_
|
|
server {
|
|
listen 80;
|
|
listen [::]:80;
|
|
|
|
server_name ${SERVERNAME};
|
|
|
|
## SSL configuration.
|
|
#ssl_certificate /etc/letsencrypt/live/${SERVERNAME}/fullchain.pem;
|
|
#ssl_certificate_key /etc/letsencrypt/live/${SERVERNAME}/privkey.pem;
|
|
#ssl_trusted_certificate /etc/letsencrypt/live/${SERVERNAME}/fullchain.pem;
|
|
#include /etc/nginx/includes/ssl.conf;
|
|
|
|
## Log Settings.
|
|
access_log ${WEBROOT}/access_log combined buffer=32k;
|
|
error_log ${WEBROOT}/error_log error;
|
|
|
|
## Virtual host root directory.
|
|
set \$root_path "${WEBROOT}/public";
|
|
root \$root_path;
|
|
index index.php index.html index.htm;
|
|
|
|
## Uncomment to enable Mod PageSpeed (Nginx must be installed with mod PageSpeed).
|
|
#include /etc/nginx/includes/mod_pagespeed.conf;
|
|
|
|
# Authorizing domain.
|
|
#pagespeed Domain ${SERVERNAME};
|
|
#pagespeed Domain *.${SERVERNAME};
|
|
|
|
# Authorize CDN host below here!
|
|
##pagespeed Domain your-cdn-host;
|
|
|
|
# Map CDN host below here!
|
|
##pagespeed MapOriginDomain https://your-cdn-address https://${SERVERNAME};
|
|
|
|
# Rewrite CDN host below here!
|
|
##pagespeed MapRewriteDomain https://your-cdn-address https://${SERVERNAME};
|
|
|
|
# PageSpeed should be disabled on the admin (adjust to suit custom admin URLs).
|
|
#pagespeed Disallow "*/account/*";
|
|
#pagespeed Disallow "*/dashboard/*";
|
|
#pagespeed Disallow "*/admin/*";
|
|
|
|
## Access control Cross-origin Resource Sharing (CORS).
|
|
set \$cors "${SERVERNAME},*.${SERVERNAME}";
|
|
|
|
# PageSpeed CORS support.
|
|
#pagespeed AddResourceHeader "Access-Control-Allow-Origin" "${SERVERNAME}";
|
|
#pagespeed AddResourceHeader "Access-Control-Allow-Origin" "*.${SERVERNAME}";
|
|
|
|
## Global directives configuration.
|
|
include /etc/nginx/includes/rules_security.conf;
|
|
include /etc/nginx/includes/rules_staticfiles.conf;
|
|
include /etc/nginx/includes/rules_restriction.conf;
|
|
|
|
## Default vhost directives configuration.
|
|
#include /etc/nginx/includes/rules_fastcgi_cache.conf;
|
|
include /etc/nginx/vhost/site_${FRAMEWORK}.conf;
|
|
|
|
## Add your custom site directives here.
|
|
|
|
## End of custom site directives.
|
|
|
|
## Pass the PHP scripts to FastCGI server listening on Unix socket.
|
|
location ~ \.php$ {
|
|
fastcgi_split_path_info ^(.+\.php)(/.+)$;
|
|
fastcgi_index index.php;
|
|
|
|
# Include FastCGI Params.
|
|
include /etc/nginx/fastcgi_params;
|
|
|
|
# Include FastCGI Configs.
|
|
include /etc/nginx/includes/fastcgi.conf;
|
|
|
|
# FastCGI socket, change to fits your own socket!
|
|
fastcgi_pass unix:/run/php/php${PHP_VERSION}-fpm.${USERNAME}.sock;
|
|
|
|
# Uncomment to Enable PHP FastCGI cache.
|
|
#include /etc/nginx/includes/fastcgi_cache.conf;
|
|
}
|
|
|
|
## PHP-FPM status monitoring
|
|
location ~ ^/(status|ping)$ {
|
|
include /etc/nginx/fastcgi_params;
|
|
|
|
fastcgi_pass unix:/run/php/php${PHP_VERSION}-fpm.${USERNAME}.sock;
|
|
|
|
allow all;
|
|
auth_basic "Denied";
|
|
auth_basic_user_file /srv/.htpasswd;
|
|
}
|
|
|
|
## Uncomment to enable error page directives configuration.
|
|
include /etc/nginx/includes/error_pages.conf;
|
|
|
|
## Uncomment to enable support cgi-bin scripts using fcgiwrap (like cgi-bin in Apache).
|
|
#include /etc/nginx/includes/fcgiwrap.conf;
|
|
}
|
|
_EOF_
|
|
else
|
|
info "Vhost created in dryrun mode, no data written."
|
|
fi
|
|
}
|
|
|
|
##
|
|
# Output Phalcon virtual host skeleton, fill with user input
|
|
# To be outputted into new file.
|
|
#
|
|
function create_vhost_phalcon() {
|
|
if ! "${DRYRUN}"; then
|
|
cat <<- _EOF_
|
|
server {
|
|
listen 80;
|
|
listen [::]:80;
|
|
|
|
server_name ${SERVERNAME};
|
|
|
|
## SSL configuration.
|
|
#ssl_certificate /etc/letsencrypt/live/${SERVERNAME}/fullchain.pem;
|
|
#ssl_certificate_key /etc/letsencrypt/live/${SERVERNAME}/privkey.pem;
|
|
#ssl_trusted_certificate /etc/letsencrypt/live/${SERVERNAME}/fullchain.pem;
|
|
#include /etc/nginx/includes/ssl.conf;
|
|
|
|
## Log Settings.
|
|
access_log ${WEBROOT}/access_log combined buffer=32k;
|
|
error_log ${WEBROOT}/error_log error;
|
|
|
|
## Virtual host root directory.
|
|
set \$root_path "${WEBROOT}/public";
|
|
root \$root_path;
|
|
index index.php index.html index.htm;
|
|
|
|
## Uncomment to enable Mod PageSpeed (Nginx must be installed with mod PageSpeed).
|
|
#include /etc/nginx/includes/mod_pagespeed.conf;
|
|
|
|
# Authorizing domain.
|
|
#pagespeed Domain ${SERVERNAME};
|
|
#pagespeed Domain *.${SERVERNAME};
|
|
|
|
# Authorize CDN host below here!
|
|
##pagespeed Domain your-cdn-host;
|
|
|
|
# Map CDN host below here!
|
|
##pagespeed MapOriginDomain https://your-cdn-address https://${SERVERNAME};
|
|
|
|
# Rewrite CDN host below here!
|
|
##pagespeed MapRewriteDomain https://your-cdn-address https://${SERVERNAME};
|
|
|
|
# PageSpeed should be disabled on the admin (adjust to suit custom admin URLs).
|
|
#pagespeed Disallow "*/account/*";
|
|
#pagespeed Disallow "*/dashboard/*";
|
|
#pagespeed Disallow "*/admin/*";
|
|
|
|
## Access control Cross-origin Resource Sharing (CORS).
|
|
set \$cors "${SERVERNAME},*.${SERVERNAME}";
|
|
|
|
# PageSpeed CORS support.
|
|
#pagespeed AddResourceHeader "Access-Control-Allow-Origin" "${SERVERNAME}";
|
|
#pagespeed AddResourceHeader "Access-Control-Allow-Origin" "*.${SERVERNAME}";
|
|
|
|
## Global directives configuration.
|
|
include /etc/nginx/includes/rules_security.conf;
|
|
include /etc/nginx/includes/rules_staticfiles.conf;
|
|
include /etc/nginx/includes/rules_restriction.conf;
|
|
|
|
## Default vhost directives configuration.
|
|
#include /etc/nginx/includes/rules_fastcgi_cache.conf;
|
|
include /etc/nginx/vhost/site_${FRAMEWORK}.conf;
|
|
|
|
## Add your custom site directives here.
|
|
|
|
## End of custom site directives.
|
|
|
|
## Pass the PHP scripts to FastCGI server listening on Unix socket.
|
|
location ~ \.php {
|
|
fastcgi_split_path_info ^(.+\.php)(/.+)$;
|
|
fastcgi_index index.php;
|
|
|
|
# Include FastCGI Params.
|
|
include /etc/nginx/fastcgi_params;
|
|
|
|
# Phalcon PHP custom params.
|
|
fastcgi_param APPLICATION_ENV production; # development | production
|
|
|
|
# Include FastCGI Configs.
|
|
include /etc/nginx/includes/fastcgi.conf;
|
|
|
|
# FastCGI socket, change to fits your own socket!
|
|
fastcgi_pass unix:/run/php/php${PHP_VERSION}-fpm.${USERNAME}.sock;
|
|
|
|
# Uncomment to Enable PHP FastCGI cache.
|
|
#include /etc/nginx/includes/fastcgi_cache.conf;
|
|
}
|
|
|
|
## PHP-FPM status monitoring
|
|
location ~ ^/(status|ping)$ {
|
|
include /etc/nginx/fastcgi_params;
|
|
|
|
fastcgi_pass unix:/run/php/php${PHP_VERSION}-fpm.${USERNAME}.sock;
|
|
|
|
allow all;
|
|
auth_basic "Denied";
|
|
auth_basic_user_file /srv/.htpasswd;
|
|
}
|
|
|
|
## Uncomment to enable error page directives configuration.
|
|
include /etc/nginx/includes/error_pages.conf;
|
|
|
|
## Uncomment to enable support cgi-bin scripts using fcgiwrap (like cgi-bin in Apache).
|
|
#include /etc/nginx/includes/fcgiwrap.conf;
|
|
}
|
|
_EOF_
|
|
else
|
|
info "Vhost created in dryrun mode, no data written."
|
|
fi
|
|
}
|
|
|
|
##
|
|
# Output Wordpress Multisite vHost header.
|
|
#
|
|
function prepare_vhost_wpms() {
|
|
cat <<- _EOF_
|
|
# Wordpress Multisite Mapping for Nginx (Requires Nginx Helper plugin).
|
|
map \$http_host \$blogid {
|
|
default 0;
|
|
include ${WEBROOT}/wp-content/uploads/nginx-helper/[map].conf;
|
|
}
|
|
|
|
_EOF_
|
|
}
|
|
|
|
##
|
|
# Output server block for HTTP to HTTPS redirection.
|
|
#
|
|
function redirect_http_to_https() {
|
|
cat <<- _EOF_
|
|
|
|
# HTTP to HTTPS redirection
|
|
server {
|
|
listen 80;
|
|
listen [::]:80;
|
|
|
|
server_name ${SERVERNAME};
|
|
|
|
# Automatically redirect site to HTTPS protocol.
|
|
return 301 https://\$server_name\$request_uri;
|
|
}
|
|
_EOF_
|
|
}
|
|
|
|
##
|
|
# Output index.html skeleton for default index page
|
|
# To be outputted into new index.html file in document root.
|
|
#
|
|
function create_index_file() {
|
|
if ! "${DRYRUN}"; then
|
|
cat <<- _EOF_
|
|
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<!--
|
|
Served by
|
|
_ _____ __ __ ____
|
|
| | | ____| \/ | _ \ ___ _ __
|
|
| | | _| | |\/| | |_) / _ \ '__|
|
|
| |___| |___| | | | __/ __/ |
|
|
|_____|_____|_| |_|_| \___|_|
|
|
-->
|
|
<meta charset="utf-8">
|
|
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
|
<title>Welcome to ${SERVERNAME}!</title>
|
|
<link href="https://fonts.googleapis.com/css?family=Cabin:400,700" rel="stylesheet">
|
|
<link href="https://fonts.googleapis.com/css?family=Montserrat:900" rel="stylesheet">
|
|
<style>
|
|
/**
|
|
* Forked from Colorlib https://colorlib.com/etc/404/colorlib-error-404-3/
|
|
*/
|
|
*{-webkit-box-sizing:border-box;box-sizing:border-box}body{padding:0;margin:0}#errorpg{position:relative;height:100vh}#errorpg .errorpg{position:absolute;left:50%;top:50%;-webkit-transform:translate(-50%,-50%);-ms-transform:translate(-50%,-50%);transform:translate(-50%,-50%)}.errorpg{max-width:520px;width:100%;line-height:1.4;/*text-align:center*/}.errorpg .errorpg-msg{position:relative;height:240px}.errorpg .errorpg-msg h1{font-family:Montserrat,sans-serif;position:absolute;left:50%;top:50%;-webkit-transform:translate(-50%,-50%);-ms-transform:translate(-50%,-50%);transform:translate(-50%,-50%);font-size:252px;font-weight:900;margin:0;color:#262626;text-transform:uppercase;letter-spacing:-40px;margin-left:-20px}.errorpg .errorpg-msg h1>span{text-shadow:-8px 0 0 #fff}.errorpg .errorpg-msg h3{font-family:Cabin,sans-serif;position:relative;font-size:16px;font-weight:700;text-transform:uppercase;color:#262626;margin:0;letter-spacing:3px;padding-left:6px}.errorpg h2{font-family:Cabin,sans-serif;font-size:20px;font-weight:400;text-transform:uppercase;color:#000;margin-top:0;margin-bottom:25px}@media only screen and (max-width:767px){.errorpg .errorpg-msg{height:200px}.errorpg .errorpg-msg h1{font-size:200px}}@media only screen and (max-width:480px){.errorpg .errorpg-msg{height:162px}.errorpg .errorpg-msg h1{font-size:162px;height:150px;line-height:162px}.errorpg h2{font-size:16px}}
|
|
div.banner{color:#009639;font-family:Montserrat,sans-serif;position:absolute;left:50%;top:50%;-webkit-transform:translate(-50%,-50%);-ms-transform:translate(-50%,-50%);transform:translate(-50%,-50%);font-size:180px;font-weight:900;margin:0;letter-spacing:-25px;margin-left:-10px}
|
|
</style>
|
|
<!--[if lt IE 9]>
|
|
<script src="https://oss.maxcdn.com/html5shiv/3.7.3/html5shiv.min.js"></script>
|
|
<script src="https://oss.maxcdn.com/respond/1.4.2/respond.min.js"></script>
|
|
<![endif]-->
|
|
</head>
|
|
<body>
|
|
<div id="errorpg">
|
|
<div class="errorpg">
|
|
<div class="errorpg-msg">
|
|
<h3>Honest_Coder presents...</h3>
|
|
<div class="banner">
|
|
<span>L</span><span>E</span><span>M</span><span>P</span><span>er</span></div>
|
|
</div>
|
|
<h2>This is the default index page of your website.</h2>
|
|
<p>This file may be deleted or overwritten without any difficulty. This is produced by the file index.html in the web directory.</p>
|
|
<p>To disable this page, please remove the index.html file and replace it with your own. Our handy <a href="https://github.com/joglomedia/LEMPer/wiki">Quick Start Guide</a> can help you get up and running fast.</p>
|
|
<p>For questions or problems, please contact our support team.</p>
|
|
</div>
|
|
</div>
|
|
<script src="https://ajax.cloudflare.com/cdn-cgi/scripts/95c75768/cloudflare-static/rocket-loader.min.js" data-cf-settings="d841170f43ff1e03f58512ad-|49" defer=""></script>
|
|
</body>
|
|
</html>
|
|
_EOF_
|
|
else
|
|
info "index file created in dryrun mode, no data written."
|
|
fi
|
|
}
|
|
|
|
##
|
|
# Output PHP-FPM pool configuration
|
|
# To be outputted into new pool file in fpm/pool.d.
|
|
#
|
|
function create_fpm_pool_conf() {
|
|
cat <<- _EOF_
|
|
[${USERNAME}]
|
|
user = ${USERNAME}
|
|
group = ${USERNAME}
|
|
|
|
listen = /run/php/php${PHP_VERSION}-fpm.\$pool.sock
|
|
listen.owner = ${USERNAME}
|
|
listen.group = ${USERNAME}
|
|
listen.mode = 0666
|
|
;listen.allowed_clients = 127.0.0.1
|
|
|
|
; Custom PHP-FPM optimization here
|
|
; adjust to meet your needs.
|
|
pm = dynamic
|
|
pm.max_children = 5
|
|
pm.start_servers = 2
|
|
pm.min_spare_servers = 1
|
|
pm.max_spare_servers = 3
|
|
pm.process_idle_timeout = 30s
|
|
pm.max_requests = 500
|
|
|
|
; PHP-FPM monitoring
|
|
pm.status_path = /status
|
|
ping.path = /ping
|
|
|
|
slowlog = /var/log/php/php${PHP_VERSION}-fpm_slow.\$pool.log
|
|
request_slowlog_timeout = 5s
|
|
|
|
chdir = /home/${USERNAME}
|
|
|
|
;catch_workers_output = yes
|
|
;decorate_workers_output = no
|
|
|
|
security.limit_extensions = .php .php${PHP_VERSION//./}
|
|
|
|
; Custom PHP ini settings.
|
|
php_flag[display_errors] = On
|
|
;php_admin_value[error_reporting] = E_ALL & ~E_DEPRECATED & ~E_STRICT
|
|
;php_admin_value[disable_functions] = pcntl_alarm,pcntl_fork,pcntl_waitpid,pcntl_wait,pcntl_wifexited,pcntl_wifstopped,pcntl_wifsignaled,pcntl_wifcontinued,pcntl_wexitstatus,pcntl_wtermsig,pcntl_wstopsig,pcntl_signal,pcntl_signal_get_handler,pcntl_signal_dispatch,pcntl_get_last_error,pcntl_strerror,pcntl_sigprocmask,pcntl_sigwaitinfo,pcntl_sigtimedwait,pcntl_exec,pcntl_getpriority,pcntl_setpriority,pcntl_async_signals,exec,passthru,popen,proc_open,shell_exec,system
|
|
php_admin_flag[log_errors] = On
|
|
php_admin_value[error_log] = /var/log/php/php${PHP_VERSION}-fpm.\$pool.log
|
|
php_admin_value[date.timezone] = ${TIMEZONE}
|
|
php_admin_value[memory_limit] = 128M
|
|
php_admin_value[opcache.file_cache] = /home/${USERNAME}/.lemper/php/opcache
|
|
php_admin_value[open_basedir] = /home/${USERNAME}
|
|
php_admin_value[session.save_path] = /home/${USERNAME}/.lemper/php/sessions
|
|
php_admin_value[sys_temp_dir] = /home/${USERNAME}/.lemper/tmp
|
|
php_admin_value[upload_tmp_dir] = /home/${USERNAME}/.lemper/tmp
|
|
php_admin_value[upload_max_filesize] = 20M
|
|
php_admin_value[post_max_size] = 20M
|
|
;php_admin_value[sendmail_path] = /usr/sbin/sendmail -t -i -f you@yourmail.com
|
|
_EOF_
|
|
}
|
|
|
|
##
|
|
# Install WordPress
|
|
# Installing WordPress skeleton.
|
|
#
|
|
function install_wordpress() {
|
|
if ! "${DRYRUN}"; then
|
|
# Clone new WordPress skeleton files
|
|
if [[ ${INSTALL_APP} == true ]]; then
|
|
# Check WordPress install directory.
|
|
if [ ! -f "${WEBROOT}/wp-includes/class-wp.php" ]; then
|
|
if ! command -v wp-cli &> /dev/null; then
|
|
info "WP CLI command not found, trying to install it first."
|
|
run wget -q https://raw.githubusercontent.com/wp-cli/builds/gh-pages/phar/wp-cli.phar \
|
|
-O /usr/local/bin/wp-cli && \
|
|
run chmod ugo+x /usr/local/bin/wp-cli
|
|
fi
|
|
|
|
# Download WordPress skeleton files.
|
|
run sudo -u "${USERNAME}" -i -- wp-cli core download --path="${WEBROOT}"
|
|
|
|
echo "Creating WordPress database..."
|
|
APP_UNIQUE="wp$(openssl rand -base64 32 | tr -dc 'a-z0-9' | fold -w 6 | head -n 1)"
|
|
APP_DB_USER="${USERNAME}_${APP_UNIQUE}"
|
|
APP_DB_PASS="$(openssl rand -base64 64 | tr -dc 'a-zA-Z0-9' | fold -w 16 | head -n 1)"
|
|
APP_DB_NAME="app_${APP_UNIQUE}"
|
|
APP_ADMIN_USER="${APP_UNIQUE}"
|
|
APP_ADMIN_PASS="$(openssl rand -base64 64 | tr -dc 'a-zA-Z0-9' | fold -w 16 | head -n 1)"
|
|
|
|
run /usr/local/bin/lemper-cli db account create --dbuser="${APP_DB_USER}" --dbpass="${APP_DB_PASS}" && \
|
|
run /usr/local/bin/lemper-cli db create --dbname="${APP_DB_NAME}" --dbuser="${APP_DB_USER}" && \
|
|
run sudo -u "${USERNAME}" -i -- wp-cli config create --dbname="${APP_DB_NAME}" \
|
|
--dbuser="${APP_DB_USER}" --dbpass="${APP_DB_PASS}" --dbprefix=lp_ --path="${WEBROOT}"
|
|
else
|
|
info "It seems that WordPress files already exists."
|
|
fi
|
|
else
|
|
# Create default index file.
|
|
echo "Creating default WordPress index file..."
|
|
|
|
if [ ! -e "${WEBROOT}/index.html" ]; then
|
|
create_index_file > "${WEBROOT}/index.html"
|
|
fi
|
|
fi
|
|
fi
|
|
|
|
# Get default favicon.
|
|
#run wget -q -O "${WEBROOT}/favicon.ico" https://github.com/joglomedia/LEMPer/raw/master/favicon.ico
|
|
|
|
run chown -hR "${USERNAME}:${USERNAME}" "${WEBROOT}"
|
|
}
|
|
|
|
##
|
|
# Get server IP Address.
|
|
#
|
|
function get_ip_addr() {
|
|
local IP_INTERNAL && \
|
|
IP_INTERNAL=$(ip addr | grep 'inet' | grep -v inet6 | \
|
|
grep -vE '127\.[0-9]{1,3}\.[0-9]{1,3}\.[0-9]{1,3}' | \
|
|
grep -oE '[0-9]{1,3}\.[0-9]{1,3}\.[0-9]{1,3}\.[0-9]{1,3}' | head -1)
|
|
local IP_EXTERNAL && \
|
|
IP_EXTERNAL=$(curl -s http://ipecho.net/plain)
|
|
|
|
if [[ "${IP_INTERNAL}" == "${IP_EXTERNAL}" ]]; then
|
|
echo "${IP_EXTERNAL}"
|
|
else
|
|
echo "${IP_INTERNAL}"
|
|
fi
|
|
}
|
|
|
|
##
|
|
# Check whether IPv4 is valid.
|
|
#
|
|
function validate_ipv4() {
|
|
local ip=${1}
|
|
local return=false
|
|
|
|
if [[ ${ip} =~ ^[0-9]{1,3}\.[0-9]{1,3}\.[0-9]{1,3}\.[0-9]{1,3}$ ]]; then
|
|
#OIFS=${IFS}
|
|
IFS='.' read -r -a ips <<< "${ip}"
|
|
#IFS=${OIFS}
|
|
if [[ ${ips[0]} -le 255 && ${ips[1]} -le 255 && ${ips[2]} -le 255 && ${ips[3]} -le 255 ]]; then
|
|
return=true
|
|
fi
|
|
fi
|
|
|
|
echo ${return}
|
|
}
|
|
|
|
##
|
|
# Check whether IPv6 is valid.
|
|
#
|
|
function validate_ipv6() {
|
|
local ip=${1}
|
|
local return=false
|
|
|
|
if [[ ${ip} =~ ^([0-9a-fA-F]{0,4}:){1,7}[0-9a-fA-F]{0,4}$ ]]; then
|
|
return=true
|
|
fi
|
|
|
|
echo ${return}
|
|
}
|
|
|
|
##
|
|
# Main App
|
|
#
|
|
function init_app() {
|
|
#CURDIR=$(pwd)
|
|
|
|
OPTS=$(getopt -o u:d:e:f:4:6:w:p:icPsFWDhv \
|
|
-l username:,domain-name:,admin-email:,framework:,ipv4:,ipv6:,webroot:,php-version:,install-app \
|
|
-l enable-fastcgi-cache,enable-pagespeed,enable-ssl,enable-fail2ban,wildcard-domain,dryrun,help,version \
|
|
-n "${APP_NAME}" -- "$@")
|
|
|
|
eval set -- "${OPTS}"
|
|
|
|
# Default value
|
|
IPv4=""
|
|
IPv6=""
|
|
USERNAME=""
|
|
SERVERNAME=""
|
|
WEBROOT=""
|
|
FRAMEWORK="default"
|
|
PHP_VERSION="7.3"
|
|
INSTALL_APP=false
|
|
ENABLE_FASTCGI_CACHE=false
|
|
ENABLE_PAGESPEED=false
|
|
ENABLE_SSL=false
|
|
ENABLE_WILDCARD_DOMAIN=false
|
|
ENABLE_FAIL2BAN=false
|
|
TMPDIR="/tmp/lemper"
|
|
|
|
# Test mode
|
|
DRYRUN=false
|
|
|
|
# Args counter
|
|
MAIN_ARGS=0
|
|
|
|
# Parse flags
|
|
while true
|
|
do
|
|
case "${1}" in
|
|
-4 | --ipv4) shift
|
|
IPv4="${1}"
|
|
shift
|
|
;;
|
|
-6 | --ipv6) shift
|
|
IPv6="${1}"
|
|
shift
|
|
;;
|
|
-d | --domain-name) shift
|
|
SERVERNAME="${1}"
|
|
MAIN_ARGS=$((MAIN_ARGS + 1))
|
|
shift
|
|
;;
|
|
-e | --admin-email) shift
|
|
APP_ADMIN_EMAIL="${1}"
|
|
shift
|
|
;;
|
|
-f | --framework) shift
|
|
FRAMEWORK="${1}"
|
|
shift
|
|
;;
|
|
-u | --username) shift
|
|
USERNAME="${1}"
|
|
shift
|
|
;;
|
|
-w | --webroot) shift
|
|
# Remove trailing slash.
|
|
# shellcheck disable=SC2001
|
|
WEBROOT=$(echo "${1}" | sed 's:/*$::')
|
|
shift
|
|
;;
|
|
-p | --php-version) shift
|
|
PHP_VERSION="${1}"
|
|
shift
|
|
;;
|
|
|
|
-c | --enable-fastcgi-cache) shift
|
|
ENABLE_FASTCGI_CACHE=true
|
|
;;
|
|
-D | --dryrun) shift
|
|
DRYRUN=true
|
|
;;
|
|
-F | --enable-fail2ban) shift
|
|
ENABLE_FAIL2BAN=true
|
|
;;
|
|
-h | --help) shift
|
|
show_usage
|
|
exit 0
|
|
;;
|
|
-i | --install-app) shift
|
|
INSTALL_APP=true
|
|
;;
|
|
-P | --enable-pagespeed) shift
|
|
ENABLE_PAGESPEED=true
|
|
;;
|
|
-s | --enable-ssl) shift
|
|
ENABLE_SSL=true
|
|
;;
|
|
-v | --version) shift
|
|
echo "${APP_NAME^} version ${APP_VERSION}"
|
|
exit 1
|
|
;;
|
|
-W | --wildcard-domain) shift
|
|
ENABLE_WILDCARD_DOMAIN=true
|
|
;;
|
|
--) shift
|
|
break
|
|
;;
|
|
*)
|
|
fail "Invalid argument: ${1}"
|
|
exit 1
|
|
;;
|
|
esac
|
|
done
|
|
|
|
if [ ${MAIN_ARGS} -ge 1 ]; then
|
|
# Additional Check - ensure that Nginx's configuration meets the requirements.
|
|
if [[ ! -d /etc/nginx/sites-available && ! -d /etc/nginx/vhost ]]; then
|
|
fail "It seems that your Nginx installation doesn't meet LEMPer requirements. Aborting..."
|
|
fi
|
|
|
|
# Check domain parameter.
|
|
if [[ -z "${SERVERNAME}" ]]; then
|
|
fail -e "Domain name parameter shouldn't be empty.\n -d or --domain-name parameter is required!"
|
|
else
|
|
if ! grep -q -P '(?=^.{1,254}$)(^(?>(?!\d+\.)[a-zA-Z0-9_\-]{1,63}\.?)+(?:[a-zA-Z]{2,})$)' <<< "${SERVERNAME}"; then
|
|
fail -e "Domain name parameter must be an valid fully qualified domain name (FQDN)!"
|
|
fi
|
|
fi
|
|
|
|
# Make temp dir.
|
|
if [ ! -d "${TMPDIR}" ]; then
|
|
run mkdir -p "${TMPDIR}"
|
|
fi
|
|
|
|
# Define vhost file.
|
|
VHOST_FILE="/etc/nginx/sites-available/${SERVERNAME}.conf"
|
|
|
|
# Check if vhost not exists.
|
|
if [ ! -f "${VHOST_FILE}" ]; then
|
|
echo "Add new app domain '${SERVERNAME}' to virtual host."
|
|
|
|
# Check for username.
|
|
if [[ -z "${USERNAME}" ]]; then
|
|
info "Username parameter is empty. Attempt to use default '${LEMPER_USERNAME}' account."
|
|
USERNAME=${LEMPER_USERNAME:-"lemper"}
|
|
fi
|
|
|
|
# Additional Check - are user account exist?
|
|
if [[ -z $(getent passwd "${USERNAME}") ]]; then
|
|
fail "User account '${USERNAME}' does not exist. Please add new account first! Aborting..."
|
|
fi
|
|
|
|
# Set application parameters.
|
|
[ -z "${APP_ADMIN_EMAIL}" ] && APP_ADMIN_EMAIL=${LEMPER_ADMIN_EMAIL:-"admin@${SERVERNAME}"}
|
|
|
|
# PHP Commands.
|
|
PHP_BIN=$(command -v "php${PHP_VERSION}")
|
|
PHP_COMPOSER_BIN=$(command -v composer)
|
|
|
|
# Check PHP fpm version is exists.
|
|
if [[ -n $(command -v "php-fpm${PHP_VERSION}") && -d "/etc/php/${PHP_VERSION}/fpm" ]]; then
|
|
# Additional check - if FPM user's pool already exist.
|
|
if [ ! -f "/etc/php/${PHP_VERSION}/fpm/pool.d/${USERNAME}.conf" ]; then
|
|
info "The PHP${PHP_VERSION} FPM pool configuration for user ${USERNAME} doesn't exist."
|
|
echo "Creating new PHP-FPM pool '${USERNAME}' configuration..."
|
|
|
|
# Create PHP FPM pool conf.
|
|
create_fpm_pool_conf > "/etc/php/${PHP_VERSION}/fpm/pool.d/${USERNAME}.conf"
|
|
run touch "/var/log/php${PHP_VERSION}-fpm_slow.${USERNAME}.log"
|
|
|
|
# Create default directories.
|
|
run mkdir -p "/home/${USERNAME}/.lemper/tmp"
|
|
run mkdir -p "/home/${USERNAME}/.lemper/php/opcache"
|
|
run mkdir -p "/home/${USERNAME}/.lemper/php/sessions"
|
|
run mkdir -p "/home/${USERNAME}/cgi-bin"
|
|
run chown -hR "${USERNAME}:${USERNAME}" "/home/${USERNAME}/.lemper/" "/home/${USERNAME}/cgi-bin/"
|
|
|
|
# Restart PHP FPM.
|
|
echo "Restart php${PHP_VERSION}-fpm configuration..."
|
|
|
|
run systemctl restart "php${PHP_VERSION}-fpm"
|
|
|
|
success "New php${PHP_VERSION}-fpm pool [${USERNAME}] has been created."
|
|
fi
|
|
else
|
|
fail "Oops, PHP ${PHP_VERSION} & FPM not found. Please install it first! Aborting..."
|
|
fi
|
|
|
|
# Check web root parameter.
|
|
if [[ -z "${WEBROOT}" ]]; then
|
|
WEBROOT="/home/${USERNAME}/webapps/${SERVERNAME}"
|
|
info "Webroot parameter is empty. Set to default web root '${WEBROOT}'."
|
|
fi
|
|
|
|
# Creates document root.
|
|
if [ ! -d "${WEBROOT}" ]; then
|
|
echo "Creating web root directory '${WEBROOT}'..."
|
|
|
|
run mkdir -p "${WEBROOT}" && \
|
|
run chown -hR "${USERNAME}:${USERNAME}" "${WEBROOT}" && \
|
|
run chmod 755 "${WEBROOT}"
|
|
fi
|
|
|
|
# Check framework parameter.
|
|
if [[ -z "${FRAMEWORK}" ]]; then
|
|
FRAMEWORK="default"
|
|
info "Framework parameter is empty. Set to default framework '${FRAMEWORK}'."
|
|
fi
|
|
|
|
echo "Selecting '${FRAMEWORK^}' framework..."
|
|
|
|
# Ugly hacks for custom framework-specific configs + Skeleton auto installer.
|
|
case "${FRAMEWORK}" in
|
|
drupal)
|
|
echo "Setting up Drupal virtual host..."
|
|
|
|
# Clone new Drupal skeleton files.
|
|
if [[ ${INSTALL_APP} == true ]]; then
|
|
# Check Drupal install directory.
|
|
if [ ! -d "${WEBROOT}/core/lib/Drupal" ]; then
|
|
echo "Downloading Drupal latest skeleton files..."
|
|
|
|
if curl -sLI https://www.drupal.org/download-latest/zip | grep -q "HTTP/[.12]* [2].."; then
|
|
run wget -q -O "${TMPDIR}/drupal.zip" https://www.drupal.org/download-latest/zip && \
|
|
run unzip -q "${TMPDIR}/drupal.zip" -d "${TMPDIR}" && \
|
|
run rsync -rq ${TMPDIR}/drupal-*/ "${WEBROOT}" && \
|
|
run rm -f "${TMPDIR}/drupal.zip" && \
|
|
run rm -fr ${TMPDIR}/drupal-*/
|
|
else
|
|
error "Something went wrong while downloading Drupal files."
|
|
fi
|
|
else
|
|
info "It seems that Drupal files already exists."
|
|
fi
|
|
else
|
|
# Create default index file.
|
|
if [ ! -e "${WEBROOT}/index.php" ]; then
|
|
echo "Creating default index file..."
|
|
create_index_file > "${WEBROOT}/index.html"
|
|
fi
|
|
fi
|
|
|
|
#run wget -q -O "${WEBROOT}/favicon.ico" \
|
|
# https://github.com/joglomedia/LEMPer/raw/master/favicon.ico
|
|
|
|
# Fix ownership.
|
|
run chown -hR "${USERNAME}:${USERNAME}" "${WEBROOT}"
|
|
|
|
# Create vhost.
|
|
echo "Creating virtual host file: ${VHOST_FILE}..."
|
|
create_vhost_drupal > "${VHOST_FILE}"
|
|
;;
|
|
|
|
laravel|lumen)
|
|
echo "Setting up Laravel framework virtual host..."
|
|
|
|
# Install Laravel framework skeleton
|
|
# clone new Laravel files.
|
|
if [[ ${INSTALL_APP} == true ]]; then
|
|
# Check Laravel install.
|
|
if [ ! -f "${WEBROOT}/artisan" ]; then
|
|
echo "Downloading ${FRAMEWORK^} skeleton files..."
|
|
|
|
if [[ -n "${PHP_COMPOSER_BIN}" ]]; then
|
|
run "${PHP_BIN}" "${PHP_COMPOSER_BIN}" create-project --prefer-dist "laravel/${FRAMEWORK}" "${WEBROOT}"
|
|
else
|
|
run git clone -q --depth=1 --branch=master \
|
|
"https://github.com/laravel/${FRAMEWORK}.git" "${WEBROOT}" || \
|
|
error "Something went wrong while downloading ${FRAMEWORK^} files."
|
|
fi
|
|
else
|
|
info "It seems that ${FRAMEWORK^} skeleton files already exists."
|
|
fi
|
|
else
|
|
# Create default index file.
|
|
if [ ! -e "${WEBROOT}/public/index.php" ]; then
|
|
echo "Creating default index file..."
|
|
run mkdir -p "${WEBROOT}/public"
|
|
create_index_file > "${WEBROOT}/public/index.html"
|
|
fi
|
|
fi
|
|
|
|
# Well-Known URIs: RFC 8615.
|
|
if [ ! -d "${WEBROOT}/public/.well-known" ]; then
|
|
run mkdir -p "${WEBROOT}/public/.well-known"
|
|
fi
|
|
|
|
#run wget -q -O "${WEBROOT}/public/favicon.ico" \
|
|
# https://github.com/joglomedia/LEMPer/raw/master/favicon.ico
|
|
|
|
# Fix ownership.
|
|
run chown -hR "${USERNAME}:${USERNAME}" "${WEBROOT}"
|
|
|
|
# Create vhost.
|
|
echo "Creating virtual host file: ${VHOST_FILE}..."
|
|
|
|
# Return Lumen framework as Laravel for vhost creation.
|
|
[ "${FRAMEWORK}" == "lumen" ] && FRAMEWORK="laravel"
|
|
create_vhost_laravel > "${VHOST_FILE}"
|
|
;;
|
|
|
|
phalcon|phalcon-cli|phalcon-micro|phalcon-modules)
|
|
echo "Setting up ${FRAMEWORK^} framework virtual host..."
|
|
|
|
# Auto install Phalcon PHP framework skeleton.
|
|
if [[ ${INSTALL_APP} == true ]]; then
|
|
# Check Phalcon skeleton install.
|
|
if [ ! -f "${WEBROOT}/app/config/config.php" ]; then
|
|
echo "Downloading ${FRAMEWORK^} skeleton files..."
|
|
|
|
# Switch Phalcon framework type.
|
|
case "${FRAMEWORK}" in
|
|
phalcon-cli)
|
|
PHALCON_TYPE="cli"
|
|
;;
|
|
phalcon-micro)
|
|
PHALCON_TYPE="micro"
|
|
;;
|
|
phalcon-modules)
|
|
PHALCON_TYPE="modules"
|
|
;;
|
|
*)
|
|
PHALCON_TYPE="simple"
|
|
;;
|
|
esac
|
|
|
|
PHP_PHALCON_BIN=$(command -v phalcon)
|
|
|
|
if [[ -n "${PHP_PHALCON_BIN}" ]]; then
|
|
run "${PHP_PHALCON_BIN}" project --name="${SERVERNAME}" --type="${PHALCON_TYPE}" --directory="/home/${USERNAME}/webapps"
|
|
else
|
|
run git clone -q --depth=1 --branch=master \
|
|
"https://github.com/joglomedia/${FRAMEWORK}-skeleton.git" "${WEBROOT}" || \
|
|
error "Something went wrong while downloading ${FRAMEWORK^} files."
|
|
fi
|
|
else
|
|
info "It seems that ${FRAMEWORK^} skeleton files already exists."
|
|
fi
|
|
else
|
|
# Create default index file.
|
|
if [ ! -e "${WEBROOT}/public/index.php" ]; then
|
|
echo "Creating default index file..."
|
|
run mkdir -p "${WEBROOT}/public"
|
|
create_index_file > "${WEBROOT}/public/index.html"
|
|
fi
|
|
fi
|
|
|
|
# Well-Known URIs: RFC 8615.
|
|
if [ ! -d "${WEBROOT}/public/.well-known" ]; then
|
|
run mkdir -p "${WEBROOT}/public/.well-known"
|
|
fi
|
|
|
|
#run wget -q -O "${WEBROOT}/public/favicon.ico" \
|
|
# https://github.com/joglomedia/LEMPer/raw/master/favicon.ico
|
|
|
|
# Fix ownership.
|
|
run chown -hR "${USERNAME}:${USERNAME}" "${WEBROOT}"
|
|
|
|
# Create vhost.
|
|
echo "Creating virtual host file: ${VHOST_FILE}..."
|
|
|
|
# Return Micro framework as Phalcon for vhost creation.
|
|
[[ "${FRAMEWORK}" == "phalcon-cli" || "${FRAMEWORK}" == "phalcon-micro" || "${FRAMEWORK}" == "phalcon-modules" ]] && FRAMEWORK="phalcon"
|
|
create_vhost_phalcon > "${VHOST_FILE}"
|
|
;;
|
|
|
|
symfony)
|
|
echo "Setting up Symfony framework virtual host..."
|
|
|
|
# Auto install Symfony PHP framework skeleton.
|
|
if [[ ${INSTALL_APP} == true ]]; then
|
|
# Check Symfony install.
|
|
if [ ! -f "${WEBROOT}/src/Kernel.php" ]; then
|
|
echo "Downloading Symfony skeleton files..."
|
|
|
|
if [[ -n "${PHP_COMPOSER_BIN}" ]]; then
|
|
run composer create-project --prefer-dist symfony/website-skeleton "${WEBROOT}"
|
|
else
|
|
warning "Symfony CLI not found, trying to install it first..."
|
|
run wget -q https://get.symfony.com/cli/installer -O - | bash
|
|
|
|
if [ -f "${HOME}/.symfony/bin/symfony" ]; then
|
|
run cp -f "${HOME}/.symfony/bin/symfony" /usr/local/bin/symfony
|
|
run chmod ugo+x /usr/local/bin/symfony
|
|
else
|
|
run export PATH="${HOME}/.symfony/bin:${PATH}"
|
|
fi
|
|
|
|
run symfony new "${WEBROOT}" --full
|
|
fi
|
|
else
|
|
info "It seems that Symfony skeleton files already exists."
|
|
fi
|
|
else
|
|
# Create default index file.
|
|
if [ ! -e "${WEBROOT}/index.php" ]; then
|
|
echo "Creating default index file..."
|
|
create_index_file > "${WEBROOT}/index.html"
|
|
fi
|
|
fi
|
|
|
|
# Well-Known URIs: RFC 8615.
|
|
if [ ! -d "${WEBROOT}/public/.well-known" ]; then
|
|
run mkdir -p "${WEBROOT}/public/.well-known"
|
|
fi
|
|
|
|
#run wget -q -O "${WEBROOT}/public/favicon.ico" \
|
|
# https://github.com/joglomedia/LEMPer/raw/master/favicon.ico
|
|
|
|
# Fix ownership.
|
|
run chown -hR "${USERNAME}:${USERNAME}" "${WEBROOT}"
|
|
|
|
# Create vhost.
|
|
echo "Creating virtual host file: ${VHOST_FILE}..."
|
|
create_vhost_default > "${VHOST_FILE}"
|
|
;;
|
|
|
|
wordpress|woocommerce)
|
|
echo "Setting up WordPress virtual host..."
|
|
|
|
# Install WordPress skeleton.
|
|
install_wordpress
|
|
|
|
if command -v wp-cli &> /dev/null; then
|
|
run sudo -u "${USERNAME}" -i -- wp-cli core install --url="${SERVERNAME}" --title="WordPress Site Managed by LEMPer.sh" \
|
|
--admin_user="${APP_ADMIN_USER}" --admin_password="${APP_ADMIN_PASS}" --admin_email="${APP_ADMIN_EMAIL}" --path="${WEBROOT}" && \
|
|
run sudo -u "${USERNAME}" -i -- wp-cli plugin install akismet nginx-helper seo-by-rank-math --activate --path="${WEBROOT}"
|
|
fi
|
|
|
|
# Install WooCommerce.
|
|
if [[ "${FRAMEWORK}" == "woocommerce" ]]; then
|
|
if [[ -d "${WEBROOT}/wp-content/plugins" && \
|
|
! -d "${WEBROOT}/wp-content/plugins/woocommerce" ]]; then
|
|
echo "Add WooCommerce plugin into WordPress skeleton..."
|
|
|
|
if command -v wp-cli &> /dev/null; then
|
|
run sudo -u "${USERNAME}" -i -- wp-cli plugin install woocommerce --activate --path="${WEBROOT}"
|
|
run sudo -u "${USERNAME}" -i -- wp-cli theme install storefront --activate --path="${WEBROOT}"
|
|
else
|
|
if wget -q -O "${TMPDIR}/woocommerce.zip" \
|
|
https://downloads.wordpress.org/plugin/woocommerce.zip; then
|
|
run unzip -q "${TMPDIR}/woocommerce.zip" -d "${WEBROOT}/wp-content/plugins/"
|
|
run rm -f "${TMPDIR}/woocommerce.zip"
|
|
else
|
|
error "Something went wrong while downloading WooCommerce files."
|
|
fi
|
|
fi
|
|
fi
|
|
fi
|
|
|
|
# Create vhost.
|
|
#echo "Create virtual host file: ${VHOST_FILE}"
|
|
|
|
# Return framework as Wordpress for vhost creation.
|
|
[ "${FRAMEWORK}" == "woocommerce" ] && FRAMEWORK="wordpress"
|
|
create_vhost_default > "${VHOST_FILE}"
|
|
;;
|
|
|
|
wordpress-ms)
|
|
echo "Setting up WordPress Multi-site virtual host..."
|
|
|
|
# Install WordPress.
|
|
install_wordpress
|
|
|
|
if command -v wp-cli &> /dev/null; then
|
|
run sudo -u "${USERNAME}" -i -- wp-cli core multisite-install --subdomains --url="${SERVERNAME}" \
|
|
--title="WordPress Multi-site Managed by LEMPer.sh" --admin_user="${APP_ADMIN_USER}" \
|
|
--admin_password="${APP_ADMIN_PASS}" --admin_email="${APP_ADMIN_EMAIL}" --path="${WEBROOT}" && \
|
|
run sudo -u "${USERNAME}" -i -- wp-cli plugin install akismet nginx-helper --activate-network --path="${WEBROOT}"
|
|
fi
|
|
|
|
# Mercator domain mapping.
|
|
run git clone --depth=1 --branch=master -q https://github.com/humanmade/Mercator.git "${WEBROOT}/wp-content/mu-plugins/mercator" && \
|
|
cat > "${WEBROOT}/wp-content/sunrise.php" <<_EOL_
|
|
<?php
|
|
// Default mu-plugins directory if you haven't set it
|
|
defined( 'WPMU_PLUGIN_DIR' ) or define( 'WPMU_PLUGIN_DIR', WP_CONTENT_DIR . '/mu-plugins' );
|
|
|
|
require WPMU_PLUGIN_DIR . '/mercator/mercator.php';
|
|
_EOL_
|
|
|
|
# Enable sunrise. (insert new line before match)
|
|
run sed -i "/\/*\ That/i define( 'SUNRISE', true );\n" "${WEBROOT}/wp-config.php"
|
|
|
|
# Pre-populate blog id mapping, used by Nginx vhost config.
|
|
if [ ! -d "${WEBROOT}/wp-content/uploads/nginx-helper" ]; then
|
|
run mkdir -p "${WEBROOT}/wp-content/uploads/nginx-helper"
|
|
fi
|
|
|
|
if [ ! -f "${WEBROOT}/wp-content/uploads/nginx-helper/map.conf" ]; then
|
|
run touch "${WEBROOT}/wp-content/uploads/nginx-helper/map.conf"
|
|
fi
|
|
|
|
# Virtual host.
|
|
if ! "${DRYRUN}"; then
|
|
echo "Creating virtual host file: ${VHOST_FILE}..."
|
|
|
|
# Prepare vhost specific rule for WordPress Multisite.
|
|
prepare_vhost_wpms > "${VHOST_FILE}"
|
|
|
|
# Create vhost.
|
|
create_vhost_default >> "${VHOST_FILE}"
|
|
|
|
# Enable wildcard host.
|
|
if grep -qwE "server_name\ ${SERVERNAME};$" "${VHOST_FILE}"; then
|
|
run sed -i "s/server_name\ ${SERVERNAME};/server_name\ ${SERVERNAME}\ \*.${SERVERNAME};/g" \
|
|
"${VHOST_FILE}"
|
|
fi
|
|
else
|
|
info "Virtual host created in dryrun mode, no data written."
|
|
fi
|
|
;;
|
|
|
|
filerun)
|
|
echo "Setting up FileRun virtual host..."
|
|
|
|
# Install FileRun skeleton.
|
|
if [[ ${INSTALL_APP} == true ]]; then
|
|
# Clone new Filerun files.
|
|
if [ ! -f "${WEBROOT}/system/classes/filerun.php" ]; then
|
|
echo "Downloading FileRun skeleton files..."
|
|
|
|
if wget -q -O "${TMPDIR}/FileRun.zip" http://www.filerun.com/download-latest; then
|
|
run unzip -q "${TMPDIR}/FileRun.zip" -d "${WEBROOT}"
|
|
run rm -f "${TMPDIR}/FileRun.zip"
|
|
else
|
|
error "Something went wrong while downloading FileRun files."
|
|
fi
|
|
else
|
|
info "FileRun skeleton files already exists."
|
|
fi
|
|
else
|
|
# Create default index file.
|
|
echo "Creating default index files..."
|
|
|
|
if [ ! -e "${WEBROOT}/index.html" ]; then
|
|
create_index_file > "${WEBROOT}/index.html"
|
|
fi
|
|
fi
|
|
|
|
#run wget -q -O "${WEBROOT}/favicon.ico" \
|
|
# https://github.com/joglomedia/LEMPer/raw/master/favicon.ico
|
|
|
|
# Fix ownership.
|
|
run chown -hR "${USERNAME}:${USERNAME}" "${WEBROOT}"
|
|
|
|
# Create vhost.
|
|
echo "Creating virtual host file: ${VHOST_FILE}..."
|
|
create_vhost_default > "${VHOST_FILE}"
|
|
;;
|
|
|
|
default|codeigniter|mautic|roundcube|sendy)
|
|
# TODO: Auto install framework skeleton.
|
|
|
|
# Create default index file.
|
|
if [ ! -e "${WEBROOT}/index.html" ]; then
|
|
create_index_file > "${WEBROOT}/index.html"
|
|
fi
|
|
|
|
#run wget -q -O "${WEBROOT}/favicon.ico" \
|
|
# https://github.com/joglomedia/LEMPer/raw/master/favicon.ico
|
|
|
|
# Fix ownership.
|
|
run chown -hR "${USERNAME}:${USERNAME}" "${WEBROOT}"
|
|
|
|
# Create default vhost.
|
|
echo "Creating virtual host file: ${VHOST_FILE}..."
|
|
create_vhost_default > "${VHOST_FILE}"
|
|
;;
|
|
|
|
*)
|
|
# Not supported framework/cms, abort.
|
|
fail "Sorry, your framework/cms [${FRAMEWORK^}] is not supported yet. Aborting..."
|
|
exit 1
|
|
;;
|
|
esac
|
|
|
|
if "${DRYRUN}"; then
|
|
info "New domain ${SERVERNAME} added in dry run mode."
|
|
else
|
|
# Confirm virtual host.
|
|
if grep -qwE "server_name ${SERVERNAME}" "${VHOST_FILE}"; then
|
|
success "New domain ${SERVERNAME} successfuly added to virtual host."
|
|
fi
|
|
|
|
# Creates Well-Known URIs: RFC 8615.
|
|
if [ ! -d "${WEBROOT}/.well-known" ]; then
|
|
echo "Creating .well-known directory (RFC8615)..."
|
|
run mkdir -p "${WEBROOT}/.well-known/acme-challenge"
|
|
fi
|
|
|
|
# Create log files.
|
|
run touch "${WEBROOT}/access_log"
|
|
run touch "${WEBROOT}/error_log"
|
|
|
|
# Assign IPv4 to server vhost.
|
|
if [[ $(validate_ipv4 "${IPv4}") == true ]]; then
|
|
echo "Assigning IPv4 ${IPv4} to ${SERVERNAME}..."
|
|
|
|
if grep -qwE "listen\ 80" "${VHOST_FILE}"; then
|
|
run sed -i "s/^\ listen\ 80/\ listen ${IPv4}:80/g" "${VHOST_FILE}"
|
|
fi
|
|
fi
|
|
|
|
# Assign IPv6 to server vhost.
|
|
if [[ $(validate_ipv6 "${IPv6}") == true ]]; then
|
|
echo "Assigning IPv6 ${IPv6} to ${SERVERNAME}..."
|
|
|
|
if grep -qwE "listen\ \[::\]:80" "${VHOST_FILE}"; then
|
|
run sed -i "s/^\ listen\ \[::\]:80/\ listen [${IPv6}]:80/g" "${VHOST_FILE}"
|
|
fi
|
|
fi
|
|
|
|
# Enable Wildcard domain.
|
|
if [[ ${ENABLE_WILDCARD_DOMAIN} == true ]]; then
|
|
echo "Enable wildcard domain for ${SERVERNAME}..."
|
|
|
|
if grep -qwE "server_name\ ${SERVERNAME};$" "${VHOST_FILE}"; then
|
|
run sed -i "s/server_name\ ${SERVERNAME};/server_name\ ${SERVERNAME}\ \*.${SERVERNAME};/g" "${VHOST_FILE}"
|
|
fi
|
|
fi
|
|
|
|
# Enable FastCGI cache.
|
|
if [[ ${ENABLE_FASTCGI_CACHE} == true ]]; then
|
|
echo "Enable FastCGI cache for ${SERVERNAME}..."
|
|
|
|
if [ -f /etc/nginx/includes/rules_fastcgi_cache.conf ]; then
|
|
# enable cached directives
|
|
run sed -i "s|#include\ /etc/nginx/includes/rules_fastcgi_cache.conf|include\ /etc/nginx/includes/rules_fastcgi_cache.conf|g" "${VHOST_FILE}"
|
|
# enable fastcgi_cache conf
|
|
run sed -i "s|#include\ /etc/nginx/includes/fastcgi_cache.conf|include\ /etc/nginx/includes/fastcgi_cache.conf|g" "${VHOST_FILE}"
|
|
else
|
|
info "FastCGI cache is not enabled due to no cached version of ${FRAMEWORK^} directive."
|
|
fi
|
|
fi
|
|
|
|
# Enable PageSpeed.
|
|
if [[ ${ENABLE_PAGESPEED} == true ]]; then
|
|
echo "Enable Mod PageSpeed for ${SERVERNAME}..."
|
|
|
|
if [[ -f /etc/nginx/includes/mod_pagespeed.conf && -f /etc/nginx/modules-enabled/60-mod-pagespeed.conf ]]; then
|
|
# enable mod pagespeed
|
|
run sed -i "s|#include\ /etc/nginx/mod_pagespeed|include\ /etc/nginx/mod_pagespeed|g" /etc/nginx/nginx.conf
|
|
run sed -i "s|#include\ /etc/nginx/includes/mod_pagespeed.conf|include\ /etc/nginx/includes/mod_pagespeed.conf|g" "${VHOST_FILE}"
|
|
run sed -i "s|#pagespeed\ EnableFilters|pagespeed\ EnableFilters|g" "${VHOST_FILE}"
|
|
run sed -i "s|#pagespeed\ Disallow|pagespeed\ Disallow|g" "${VHOST_FILE}"
|
|
run sed -i "s|#pagespeed\ Domain|pagespeed\ Domain|g" "${VHOST_FILE}"
|
|
else
|
|
info "Mod PageSpeed is not enabled. Nginx must be installed with PageSpeed module."
|
|
fi
|
|
fi
|
|
|
|
# Enable fail2ban filter
|
|
if [[ ${ENABLE_FAIL2BAN} == true ]]; then
|
|
echo "Enable Fail2ban ${FRAMEWORK^} filter for ${SERVERNAME}..."
|
|
|
|
if [[ $(command -v fail2ban-client) && -f "/etc/fail2ban/filter.d/${FRAMEWORK}.conf" ]]; then
|
|
cat > "/etc/fail2ban/jail.d/${SERVERNAME}.conf" <<_EOL_
|
|
[${SERVERNAME}]
|
|
enabled = true
|
|
port = http,https
|
|
filter = ${FRAMEWORK}
|
|
action = iptables-multiport[name=webapps, port="http,https", protocol=tcp]
|
|
logpath = ${WEBROOT}/access_log
|
|
bantime = 30d
|
|
findtime = 5m
|
|
maxretry = 3
|
|
_EOL_
|
|
|
|
# Reload fail2ban
|
|
run service fail2ban reload
|
|
else
|
|
info "Fail2ban or filter is not installed. Please install it first."
|
|
fi
|
|
fi
|
|
|
|
echo "Fix files ownership and permission..."
|
|
|
|
# Fix document root ownership.
|
|
run chown -hR "${USERNAME}:${USERNAME}" "${WEBROOT}"
|
|
|
|
# Fix document root permission.
|
|
if [[ $(ls -A "${WEBROOT}") ]]; then
|
|
run find "${WEBROOT}" -type d -print0 | xargs -0 chmod 755
|
|
run find "${WEBROOT}" -type f -print0 | xargs -0 chmod 644
|
|
fi
|
|
fi
|
|
|
|
echo "Enable ${SERVERNAME} virtual host..."
|
|
|
|
# Enable site.
|
|
if [ ! -f "/etc/nginx/sites-enabled/${SERVERNAME}.conf" ]; then
|
|
run ln -s "/etc/nginx/sites-available/${SERVERNAME}.conf" \
|
|
"/etc/nginx/sites-enabled/${SERVERNAME}.conf"
|
|
fi
|
|
|
|
# Reload Nginx
|
|
echo "Reloading Nginx HTTP server configuration..."
|
|
|
|
# Validate config, reload when validated.
|
|
if nginx -t 2>/dev/null > /dev/null; then
|
|
run systemctl reload nginx
|
|
echo "Nginx HTTP server reloaded with new configuration."
|
|
else
|
|
info "Something went wrong with Nginx configuration."
|
|
fi
|
|
|
|
if [[ -f "/etc/nginx/sites-enabled/${SERVERNAME}.conf" && -e /var/run/nginx.pid ]]; then
|
|
success "Your ${SERVERNAME} successfully added to Nginx virtual host."
|
|
|
|
# Enable HTTPS.
|
|
if [[ ${ENABLE_SSL} == true ]]; then
|
|
echo ""
|
|
echo "You can enable HTTPS from lemper-cli after this setup!"
|
|
echo "command: lemper-cli manage --enable-ssl ${SERVERNAME}"
|
|
echo ""
|
|
fi
|
|
|
|
# WordPress MS notice.
|
|
if [ "${FRAMEWORK}" = "wordpress-ms" ]; then
|
|
echo >&2
|
|
info "Note: You're installing Wordpress Multisite."
|
|
info "You should activate Nginx Helper plugin to work properly."
|
|
fi
|
|
|
|
# App install details
|
|
if [[ ${INSTALL_APP} == true ]]; then
|
|
echo -e "\nYour application login details:\nAdmin user: ${APP_ADMIN_USER}\nAdmin pass: ${APP_ADMIN_PASS}\nAdmin email: ${APP_ADMIN_EMAIL}"
|
|
echo -e "Database user: ${APP_DB_USER}\nDatabase pass: ${APP_DB_PASS}\nDatabase name: ${APP_DB_NAME}"
|
|
fi
|
|
else
|
|
if "${DRYRUN}"; then
|
|
info "Your ${SERVERNAME} successfully added in dryrun mode."
|
|
else
|
|
fail "An error occurred when adding ${SERVERNAME} to Nginx virtual host."
|
|
fi
|
|
fi
|
|
else
|
|
error "Virtual host config file for ${SERVERNAME} is already exists. Aborting..."
|
|
fi
|
|
else
|
|
echo "${APP_NAME}: missing required argument."
|
|
echo "Try '${APP_NAME} --help' for more information."
|
|
fi
|
|
}
|
|
|
|
# Start running things from a call at the end so if this script is executed
|
|
# after a partial download it doesn't do anything.
|
|
init_app "$@"
|