17 lines
307 B
Bash
17 lines
307 B
Bash
|
#!/usr/bin/env bash
|
||
|
set -e
|
||
|
|
||
|
TEMPLATE='reverse_proxy $LOCAL_WEB_HOST ${LOCAL_IP}:$LOCAL_WEB_PORT'
|
||
|
|
||
|
label_hook() {
|
||
|
LOCAL_WEB_PORT="${LOCAL_WEB_PORT:-80}"
|
||
|
}
|
||
|
|
||
|
template_hook() {
|
||
|
if grep -q '^reverse_proxy [^\s] [:.0-9a-e]\+:\d+$' <<< "${PARTIAL_RESULT}"
|
||
|
then
|
||
|
return 0;
|
||
|
fi
|
||
|
return 1;
|
||
|
}
|