From 23a445404842fc67a3a98559ec59609c25f97753 Mon Sep 17 00:00:00 2001 From: Marcel Herrguth Date: Tue, 22 Jun 2021 15:18:35 +0200 Subject: [PATCH] Maintenance: Tell puma what its correct config is... --- containers/zammad/docker-entrypoint.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/containers/zammad/docker-entrypoint.sh b/containers/zammad/docker-entrypoint.sh index 87dec99..4c7c4be 100755 --- a/containers/zammad/docker-entrypoint.sh +++ b/containers/zammad/docker-entrypoint.sh @@ -152,7 +152,7 @@ if [ "$1" = 'zammad-railsserver' ]; then echo "starting railsserver... with WEB_CONCURRENCY=${ZAMMAD_WEB_CONCURRENCY}" #shellcheck disable=SC2101 - exec bundle exec puma -b [::]:"${ZAMMAD_RAILSSERVER_PORT}" "${PUMA_OPTS}" -e "${RAILS_ENV}" -C "/opt/zammad/config.ru" + exec bundle exec puma -b [::]:"${ZAMMAD_RAILSSERVER_PORT}" "${PUMA_OPTS}" -e "${RAILS_ENV}" -C "/opt/zammad/config/puma.rb" fi