Skip to content
Toggle navigation
P
Projects
G
Groups
S
Snippets
Help
Gelencsér Szabolcs
/
cloud
This project
Loading...
Sign in
Toggle navigation
Go to a project
Project
Repository
Issues
0
Merge Requests
0
Pipelines
Wiki
Members
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Commit
d54c6d26
authored
Oct 29, 2013
by
Bach Dániel
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
dashboard: remove hardcoded proxy key
parent
9aba69a4
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
1 deletions
+3
-1
circle/dashboard/views.py
+3
-1
No files found.
circle/dashboard/views.py
View file @
d54c6d26
...
@@ -8,6 +8,7 @@ from vm.models import Instance, InstanceTemplate, InterfaceTemplate
...
@@ -8,6 +8,7 @@ from vm.models import Instance, InstanceTemplate, InterfaceTemplate
from
firewall.models
import
Vlan
from
firewall.models
import
Vlan
from
storage.models
import
Disk
from
storage.models
import
Disk
from
django.core
import
signing
from
django.core
import
signing
from
os
import
getenv
import
json
import
json
...
@@ -48,7 +49,8 @@ class VmDetailView(DetailView):
...
@@ -48,7 +49,8 @@ class VmDetailView(DetailView):
port
=
instance
.
vnc_port
port
=
instance
.
vnc_port
host
=
str
(
instance
.
node
.
host
.
ipv4
)
host
=
str
(
instance
.
node
.
host
.
ipv4
)
value
=
signing
.
dumps
({
'host'
:
host
,
value
=
signing
.
dumps
({
'host'
:
host
,
'port'
:
port
},
key
=
'asdasd'
)
'port'
:
port
},
key
=
getenv
(
"PROXY_SECRET"
,
'asdasd'
)),
context
.
update
({
context
.
update
({
'vnc_url'
:
'
%
s'
%
value
'vnc_url'
:
'
%
s'
%
value
})
})
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment