summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorImre Farkas <ifarkas@redhat.com>2013-09-11 15:09:38 +0200
committerImre Farkas <ifarkas@redhat.com>2013-09-11 15:09:38 +0200
commit2f301155e0e37b74b8baeb029ed66ad39533aea8 (patch)
treed3c9b87a8dc97b0a11caa8e345747f1e55d83eb2
parent2516988ef489d1f64d5f92d726ad5b84ee8ea5a9 (diff)
downloadtuskar-ui-2f301155e0e37b74b8baeb029ed66ad39533aea8.tar.gz
Change default port to 8080 in install.rst
Change-Id: I0742ea78f4ea018a756811d4c1721c9e0c2b6f02 Fixes: bug #1223860
-rw-r--r--docs/install.rst12
1 files changed, 6 insertions, 6 deletions
diff --git a/docs/install.rst b/docs/install.rst
index 50e96778..0ab4d854 100644
--- a/docs/install.rst
+++ b/docs/install.rst
@@ -154,19 +154,19 @@ If everything has gone according to plan, you should be able to run:
tools/with_venv.sh ./manage.py runserver
-and have the application start on port 8000. The Tuskar dashboard will
-be located at http://localhost:8000/infrastructure
+and have the application start on port 8080. The Tuskar dashboard will
+be located at http://localhost:8080/infrastructure
If you wish to access it remotely (i.e., not just from localhost), you
-need to open port 8000 in iptables:
+need to open port 8080 in iptables:
::
- iptables -I INPUT -p tcp --dport 8000 -j ACCEPT
+ iptables -I INPUT -p tcp --dport 8080 -j ACCEPT
-and launch the server with ``0.0.0.0:8000`` on the end:
+and launch the server with ``0.0.0.0:8080`` on the end:
::
- tools/with_venv.sh ./manage.py runserver 0.0.0.0:8000
+ tools/with_venv.sh ./manage.py runserver 0.0.0.0:8080