From 0db9ba5ce33d6ed132d09d8398555f7c540dc7b3 Mon Sep 17 00:00:00 2001 From: Émilien Macchi Date: Fri, 26 Apr 2013 01:20:05 +0200 Subject: Wrong proxy port in nova.conf for Spice proxy If we look at nova/cmd/spicehtml5proxy.py, we use 6082 port for Spice proxy. In nova.conf, the default port for html5proxy_base_url is 6080 which fails console service. Fix bug #1172957 Change-Id: I52ca37f76e7a6abd085b079ae42e7914cb619ad5 --- nova/spice/__init__.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'nova') diff --git a/nova/spice/__init__.py b/nova/spice/__init__.py index aa283d5cc..2f0d12289 100644 --- a/nova/spice/__init__.py +++ b/nova/spice/__init__.py @@ -22,9 +22,9 @@ from oslo.config import cfg spice_opts = [ cfg.StrOpt('html5proxy_base_url', - default='http://127.0.0.1:6080/spice_auto.html', + default='http://127.0.0.1:6082/spice_auto.html', help='location of spice html5 console proxy, in the form ' - '"http://127.0.0.1:6080/spice_auto.html"'), + '"http://127.0.0.1:6082/spice_auto.html"'), cfg.StrOpt('server_listen', default='127.0.0.1', help='IP address on which instance spice server should listen'), -- cgit