Skip to content

Commit

Permalink
bugfix for traefik
Browse files Browse the repository at this point in the history
  • Loading branch information
thelamer committed Feb 14, 2024
1 parent 721b295 commit 94acb43
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion index.js
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ var TITLE = process.env.TITLE || 'KasmVNC Client';
var FM_HOME = process.env.FM_HOME || '/config';
var PATH;
if (SUBFOLDER != '/') {
PATH = '&path=' + SUBFOLDER + 'websockify'
PATH = '&path=' + SUBFOLDER.substring(1) + 'websockify'
} else {
PATH = false;
}
Expand Down

0 comments on commit 94acb43

Please sign in to comment.