anvil/conf/components/horizon.yaml
2012-08-30 16:23:51 -07:00

27 lines
675 B
YAML

# Settings for component horizon
---
# Where we download this from...
get_from: "git://github.com/openstack/horizon.git?branch=master"
# This is the group of the user (adjust as needed)
apache_group: "$(auto:user)"
# What user will apache be serving from.
#
# Root will typically not work (for apache on most distros)
# sudo adduser <username> then sudo adduser <username> admin will be what you want to set this up
#
# It will default to the running user if not provided...
apache_user: "$(auto:user)"
# Port horizon should run on
port: 80
# Needed for setting up your database
db:
type: "$(db:type)"
user: "$(db:user)"
host: "$(db:host)"
port: "$(db:port)"
...