mirror of
https://github.com/opf/openproject-deploy.git
synced 2026-02-14 16:59:51 +00:00
* [#53464] replaced containered proxy with caddy - running compose stack work with slim container now - using caddy as a light weight proxy - tested with and without OPENPROJECT_RAILS__RELATIVE__URL__ROOT * rename doc root to avoid confusion, use slim as default container --------- Co-authored-by: Markus Kahl <machisuji@gmail.com>
8 lines
149 B
Bash
Executable File
8 lines
149 B
Bash
Executable File
#!/bin/sh
|
|
|
|
set -e
|
|
|
|
sed 's|${APP_HOST}|'"$APP_HOST"'|g' /etc/caddy/Caddyfile.template > /etc/caddy/Caddyfile
|
|
|
|
caddy run --config /etc/caddy/Caddyfile
|