diff --git a/examples/php-multisite/variables.env b/examples/php-multisite/variables.env new file mode 100644 index 00000000..433d351b --- /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 00000000..e364f696 --- /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