openstack team mailing list archive
-
openstack team
-
Mailing list archive
-
Message #10843
URL Scheme for deploying Openstack in HTTPD
A production configuration of Openstack should be able to run in HTTPD
using SSL. I'd like to propose the following URL scheme for the web
Apps so that the various pieces can be installed on a single machine
without conflict.
All pieces will be served on port 443 using the https protocol.
I've written these up to use the project names. Enough documentation
and information around the projects has circulated such that replacing,
say, Keystone with identity would cause more confusion than it would remove.
#Web UI
#If and only if this is installed, we should put in a forward from / to
/dashboard for browser clients.
https://hostname/dashboard
#identity
https://hostname/keystone/main
https://hostname/keystone/admin
#image
https://hostname/glance/api
https://hostname/glance/registry
#compute. Not sure if all of these are required
https://hostname/nova/api
https://hostname/nova/crt
https://hostname/nova/object
https://hostname/nova/cpu
https://hostname/nova/network
https://hostname/nova/volume
https://hostname/nova/schedule
https://hostname/nova/novnc
https://hostname/nova/vncx
https://hostname/nova/cauth
#network
https://hostname/quantum/api
#if we had an API for the agent it would be
https://hostname/quantum/agent
There was an attempt to make Swift also fit into this scheme. However,
Swift URLs fall into a scheme of their own, and won't likely be
colocated with the admin pieces outside of development. Here they are
for completeness.
#storage
https://hostname/swift/account
https://hostname/swift/object
https://hostname/swift/container
The pattern here should be clear enough to extend to integrating
projects not listed above.
Follow ups