From 884ca0f6d08cef9c7f947390c6a3696bd9e8ab1e Mon Sep 17 00:00:00 2001 From: bunkerity Date: Wed, 17 Aug 2022 14:13:33 +0200 Subject: [PATCH] tests - add missing variables.env files for linux --- examples/php-multisite/variables.env | 14 ++++++++++++++ examples/php-singlesite/variables.env | 11 +++++++++++ 2 files changed, 25 insertions(+) create mode 100644 examples/php-multisite/variables.env create mode 100644 examples/php-singlesite/variables.env diff --git a/examples/php-multisite/variables.env b/examples/php-multisite/variables.env new file mode 100644 index 000000000..433d351b3 --- /dev/null +++ b/examples/php-multisite/variables.env @@ -0,0 +1,14 @@ +HTTP_PORT=80 +HTTPS_PORT=443 +DNS_RESOLVERS=8.8.8.8 8.8.4.4 +# Replace with your domain +SERVER_NAME=app1.example.com app2.example.com +MULTISITE=yes +DISABLE_DEFAULT_SERVER=yes +AUTO_LETS_ENCRYPT=yes +USE_CLIENT_CACHE=yes +USE_GZIP=yes +app1.example.com_LOCAL_PHP=/run/php/php-fpm.sock +app1.example.com_LOCAL_PHP_PATH=/opt/bunkerweb/www/app1.example.com +app2.example.com_LOCAL_PHP=/run/php/php-fpm.sock +app2.example.com_LOCAL_PHP_PATH=/opt/bunkerweb/www/app2.example.com diff --git a/examples/php-singlesite/variables.env b/examples/php-singlesite/variables.env new file mode 100644 index 000000000..e364f6960 --- /dev/null +++ b/examples/php-singlesite/variables.env @@ -0,0 +1,11 @@ +HTTP_PORT=80 +HTTPS_PORT=443 +DNS_RESOLVERS=8.8.8.8 8.8.4.4 +# Replace with your domain +SERVER_NAME=www.example.com +DISABLE_DEFAULT_SERVER=yes +AUTO_LETS_ENCRYPT=yes +USE_CLIENT_CACHE=yes +USE_GZIP=yes +LOCAL_PHP=/run/php/php-fpm.sock +LOCAL_PHP_PATH=/opt/bunkerweb/www