Try to set URL for the site
continuous-integration/drone/push Build is passing Details

This commit is contained in:
Luke Murphy 2020-04-06 13:35:35 +02:00
parent 6748e69a51
commit 3da45feb42
No known key found for this signature in database
GPG Key ID: 5E2EF5A63E3718CC
2 changed files with 3 additions and 1 deletions

View File

@ -50,3 +50,4 @@
DOKKU_LETSENCRYPT_EMAIL: "{{ autonomic_admin_mail }}"
JEKYLL_HOST: "0.0.0.0"
JEKYLL_PORT: "{{ http_port }}"
JEKYLL_BASEURL: "//{{ domain }}"

View File

@ -7,8 +7,9 @@ run_jekyll() {
set -eu
bundle exec jekyll serve \
--port "$JEKYLL_PORT" \
--baseurl "$JEKYLL_BASEURL" \
--host "$JEKYLL_HOST" \
--port "$JEKYLL_PORT" \
--trace
}