# Deltacloud API configuration
# http://deltacloud.org

# Environment under which to run deltacloud-core (default: production)
API_ENV="production"

# Default driver to be used (mock).
# NOTE: Some drivers require some additional gems to be installed.
# Please refer to http://deltacloud.org to see what gems are needed for specific
# drivers
DRIVER="mock"

# By default Deltacloud API will explose just native Deltacloud API
# You can enable other frontends using the variable below
#
# Example: ENABLED_FRONTEND="deltacloud,cimi,ec2"
#
ENABLED_FRONTEND="deltacloud"

# Port where deltacloud core will listen (default: localhost)
# You should be able to access Deltacloud API on http://localhost:PORT/api
PORT="3002"

# Bind to HOST address (default: localhost)
# You can use both IP address or hostname; use 0.0.0.0 to bind to all addresses
HOST="localhost"

# Default user that deltacloud core will be run under (default: nobody)
DELTACLOUD_USER="nobody"

# Default group that deltacloud core will be run under (default: nobody)
DELTACLOUD_GROUP="nobody"

DELTACLOUD_PIDFILE="/var/run/deltacloud-core-${DRIVER}.pid"
