diff --git a/services/webapp/code/rosetta/core_app/views.py b/services/webapp/code/rosetta/core_app/views.py
index 313754ce93d44d9c8ac5564614f7450bd57f2ac2..5d63f68be6f03680866dfdf31a54818ec884a69f 100644
--- a/services/webapp/code/rosetta/core_app/views.py
+++ b/services/webapp/code/rosetta/core_app/views.py
@@ -924,7 +924,7 @@ def sharable_link_handler(request, id):
 
     # Then, redirect to the task through the tunnel
     tunnel_host = get_tunnel_host()
-    return redirect('http://{}:{}'.format(tunnel_host,task.tunnel_port))
+    return redirect('{}://{}:{}'.format(task.container.protocol, tunnel_host,task.tunnel_port))