Right now, `spice_auto.html` reads the path from query string .. and never actually does anything with it. This should make `spice_auth.html` respect a path parametr when given. --- spice_auto.html | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/spice_auto.html b/spice_auto.html index 5714804..9aae118 100644 --- a/spice_auto.html +++ b/spice_auto.html @@ -128,6 +128,10 @@ uri = scheme + host + ":" + port; + if (path) { + uri += path[0] == '/' ? path : ('/' + path); + } + try { sc = new SpiceMainConn({uri: uri, screen_id: "spice-screen", dump_id: "debug-div", -- 2.8.1 _______________________________________________ Spice-devel mailing list Spice-devel@xxxxxxxxxxxxxxxxxxxxx https://lists.freedesktop.org/mailman/listinfo/spice-devel