From 8bdfe162493ede19175e019e59b4ff725c657a96 Mon Sep 17 00:00:00 2001 From: Luke Murphy Date: Mon, 6 Apr 2020 13:07:42 +0200 Subject: [PATCH] Drop the host flag --- ansible/pre-deploy.yml | 1 - sbin/entrypoint.sh | 1 - 2 files changed, 2 deletions(-) diff --git a/ansible/pre-deploy.yml b/ansible/pre-deploy.yml index f37a1ba..05eca95 100644 --- a/ansible/pre-deploy.yml +++ b/ansible/pre-deploy.yml @@ -62,7 +62,6 @@ restart: false config: DOKKU_LETSENCRYPT_EMAIL: "{{ autonomic_admin_mail }}" - JEKYLL_HOST: "{{ domain }}" JEKYLL_PORT: "{{ http_port }}" JEKYLL_SSL_CERT: "{{ ssl_cert_path }}" JEKYLL_SSL_KEY: "{{ ssl_key_path }}" diff --git a/sbin/entrypoint.sh b/sbin/entrypoint.sh index 9a18a73..d95a6f5 100755 --- a/sbin/entrypoint.sh +++ b/sbin/entrypoint.sh @@ -8,7 +8,6 @@ run_jekyll() { bundle exec jekyll serve \ --port "$JEKYLL_PORT" \ - --host "$JEKYLL_HOST" \ --trace }