Skip to content
Snippets Groups Projects
Commit 99efce0c authored by Karl Palsson's avatar Karl Palsson
Browse files

pagekite: add simple websockets and update syntax


Syntax now matches preferred upstream style.

Signed-off-by: default avatarKarl Palsson <karlp@tweak.net.au>
parent 42c7a7ad
No related branches found
No related tags found
No related merge requests found
......@@ -6,7 +6,7 @@ USE_PROCD=1
add_instance() {
local cfg="$1"
local kitename kitesecret simple_http simple_ssh static
local kitename kitesecret simple_http simple_ssh simple_ws static
config_get kitename "$cfg" kitename
config_get kitesecret "$cfg" kitesecret
[ -z "$kitename" -o -z "$kitesecret" ] && {
......@@ -15,14 +15,16 @@ add_instance() {
}
config_get_bool simple_http "$cfg" simple_http 0
config_get_bool simple_ssh "$cfg" simple_ssh 0
config_get simple_ws "$cfg" simple_ws 0
config_get_bool static "$cfg" static 0
procd_open_instance
procd_set_param command $APP
procd_append_param command -s
[ $static -eq 1 ] && procd_append_param command -S
[ $simple_http -eq 1 ] && procd_append_param command 80 http $kitename 80 $kitesecret
[ $simple_ssh -eq 1 ] && procd_append_param command 22 raw $kitename 443 $kitesecret
[ $simple_http -eq 1 ] && procd_append_param command 80 http $kitename 0 $kitesecret
[ $simple_ssh -eq 1 ] && procd_append_param command 22 raw-22 $kitename 0 $kitesecret
[ $simple_ws -gt 0 ] && procd_append_param command $simple_ws websocket-$simple_ws $kitename 0 $kitesecret
procd_close_instance
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment