From 342d128b6f2ac9e733ba09dc31a68b46b33cc0ed Mon Sep 17 00:00:00 2001 From: unknown Date: Tue, 26 Jun 2012 17:32:01 +0200 Subject: [PATCH] updated doc --- README.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index 9c7d10f..6b53db4 100644 --- a/README.md +++ b/README.md @@ -37,13 +37,13 @@ Make sure the API (name from above) is enabled in nova.conf: #### Hacking the port number -Currently nova compute will start the app you defined on an random port. If you want to have it on a predefined code you will need to edit the 'flags.py' file /nova/: +Currently nova compute will start the OCCI API on a random port. If you want to have it on a predefined port you will need to edit the 'flags.py' file in /nova/: cfg.IntOpt('occiapi_listen_port', - default=8989, + default=8787, help='the port for external test apps'), -Again the name you provide here should be identical to the name of the app you provided above! +Again the name you provide here should be identical to the name of the app you provided above (In this case 'occiapi')! ### For development