1
0
mirror of https://github.com/dkmstr/openuds.git synced 2025-03-30 18:50:20 +03:00

Fixed guacamole auth url

This commit is contained in:
Adolfo Gómez García 2021-06-29 16:57:01 +02:00
parent 8bbd897cd0
commit 02737c0e8d

View File

@ -35,7 +35,7 @@ from .views import guacamole, guacamole_authenticated
urlpatterns = [
# Authenticated path
url(r'^uds/guacamole/auth/(?P<token>[^/]+)/(?P<ticket>.+)$', guacamole_authenticated, name='dispatcher.guacamole'),
url(r'^uds/guacamole/auth/(?P<token>[^/]+)/(?P<tunnelId>.+)$', guacamole_authenticated, name='dispatcher.guacamole'),
# Non authenticated path. Disabled
# url(r'^uds/guacamole/(?P<tunnelId>.+)$', guacamole, name='dispatcher.guacamole.noauth'),
]