mirror of
https://github.com/dokku/dokku.git
synced 2025-12-16 12:07:45 +01:00
This plugin is mostly compatible with the nginx plugin, but runs the proxy within a docker container. Users do not have direct access to add custom openresty configuration at this time, but instead receive the ability to setup automatic ssl on first request via letsencrypt integration.
7 lines
159 B
Bash
Executable File
7 lines
159 B
Bash
Executable File
#!/usr/bin/env bash
|
|
set -eo pipefail
|
|
[[ $DOKKU_TRACE ]] && set -x
|
|
source "$PLUGIN_AVAILABLE_PATH/openresty-vhosts/command-functions"
|
|
|
|
cmd-openresty-start "$@"
|