diff --git a/examples/autoconf-php/docker-compose.yml b/examples/autoconf-php/docker-compose.yml index 7b65949..f8a56ba 100644 --- a/examples/autoconf-php/docker-compose.yml +++ b/examples/autoconf-php/docker-compose.yml @@ -26,9 +26,9 @@ services: image: php:fpm restart: always volumes: - - ./web-files/app1.domain.com:/app + - ./web-files/app1.website.com:/app labels: - - "bunkerized-nginx.SERVER_NAME=app1.domain.com" # replace with your domain + - "bunkerized-nginx.SERVER_NAME=app1.website.com" # replace with your domain - "bunkerized-nginx.REMOTE_PHP=myapp1" - "bunkerized-nginx.REMOTE_PHP_PATH=/app" @@ -36,9 +36,9 @@ services: image: php:fpm restart: always volumes: - - ./web-files/app2.domain.com:/app + - ./web-files/app2.website.com:/app labels: - - "bunkerized-nginx.SERVER_NAME=app2.domain.com" # replace with your domain + - "bunkerized-nginx.SERVER_NAME=app2.website.com" # replace with your domain - "bunkerized-nginx.REMOTE_PHP=myapp2" - "bunkerized-nginx.REMOTE_PHP_PATH=/app" @@ -46,8 +46,8 @@ services: image: php:fpm restart: always volumes: - - ./web-files/app3.domain.com:/app + - ./web-files/app3.website.com:/app labels: - - "bunkerized-nginx.SERVER_NAME=app3.domain.com" # replace with your domain + - "bunkerized-nginx.SERVER_NAME=app3.website.com" # replace with your domain - "bunkerized-nginx.REMOTE_PHP=myapp3" - "bunkerized-nginx.REMOTE_PHP_PATH=/app" diff --git a/examples/autoconf-php/web-files/app1.domain.com/index.php b/examples/autoconf-php/web-files/app1.website.com/index.php similarity index 100% rename from examples/autoconf-php/web-files/app1.domain.com/index.php rename to examples/autoconf-php/web-files/app1.website.com/index.php diff --git a/examples/autoconf-php/web-files/app2.domain.com/index.php b/examples/autoconf-php/web-files/app2.website.com/index.php similarity index 100% rename from examples/autoconf-php/web-files/app2.domain.com/index.php rename to examples/autoconf-php/web-files/app2.website.com/index.php diff --git a/examples/autoconf-php/web-files/app3.domain.com/index.php b/examples/autoconf-php/web-files/app3.website.com/index.php similarity index 100% rename from examples/autoconf-php/web-files/app3.domain.com/index.php rename to examples/autoconf-php/web-files/app3.website.com/index.php diff --git a/examples/autoconf-reverse-proxy/docker-compose.yml b/examples/autoconf-reverse-proxy/docker-compose.yml index 45e3410..0a8d731 100644 --- a/examples/autoconf-reverse-proxy/docker-compose.yml +++ b/examples/autoconf-reverse-proxy/docker-compose.yml @@ -28,7 +28,7 @@ services: environment: - NODE_ENV=production labels: - - "bunkerized-nginx.SERVER_NAME=app1.domain.com" # replace with your domain + - "bunkerized-nginx.SERVER_NAME=app1.website.com" # replace with your domain - "bunkerized-nginx.REVERSE_PROXY_URL=/" - "bunkerized-nginx.REVERSE_PROXY_HOST=http://myapp1:3000" @@ -38,7 +38,7 @@ services: environment: - NODE_ENV=production labels: - - "bunkerized-nginx.SERVER_NAME=app2.domain.com" # replace with your domain + - "bunkerized-nginx.SERVER_NAME=app2.website.com" # replace with your domain - "bunkerized-nginx.REVERSE_PROXY_URL=/" - "bunkerized-nginx.REVERSE_PROXY_HOST=http://myapp2:3000" @@ -48,6 +48,6 @@ services: environment: - NODE_ENV=production labels: - - "bunkerized-nginx.SERVER_NAME=app3.domain.com" # replace with your domain + - "bunkerized-nginx.SERVER_NAME=app3.website.com" # replace with your domain - "bunkerized-nginx.REVERSE_PROXY_URL=/" - "bunkerized-nginx.REVERSE_PROXY_HOST=http://myapp3:3000" diff --git a/examples/moodle/docker-compose.yml b/examples/moodle/docker-compose.yml index 3398aa5..3249a69 100644 --- a/examples/moodle/docker-compose.yml +++ b/examples/moodle/docker-compose.yml @@ -33,7 +33,7 @@ services: environment: - MOODLE_USERNAME=admin # replace with your moodle admin username - MOODLE_PASSWORD=password # replace with your moodle admin password - - MOODLE_EMAIL=moodle@website.com # replace with your moodle admin email + - MOODLE_EMAIL=moodle@website.com # replace with your moodle admin email - MOODLE_SITE_NAME=My Moodle # replace with your moodle site name - MOODLE_DATABASE_HOST=mydb - MOODLE_DATABASE_NAME=moodle