142 lines
4.5 KiB
Plaintext
142 lines
4.5 KiB
Plaintext
# ----------------------------------------------------------------------
|
|
# A I R T I M E C O N F I G U R A T I O N
|
|
# ----------------------------------------------------------------------
|
|
#
|
|
# This is an example configuration for Airtime. If you just want to
|
|
# get started with a basic Airtime setup, or don't know if you should
|
|
# be reconfiguring any of the following values, just rename this file
|
|
# to 'airtime.conf'.
|
|
#
|
|
# ----------------------------------------------------------------------
|
|
|
|
|
|
# ----------------------------------------------------------------------
|
|
# D A T A B A S E
|
|
# ----------------------------------------------------------------------
|
|
#
|
|
# These settings are used to configure your database connection.
|
|
#
|
|
# host: The hostname of the database server.
|
|
# On a default Airtime installation, set this to localhost.
|
|
#
|
|
# dbname: The name of the Airtime database.
|
|
# The default is airtime.
|
|
#
|
|
# dbuser: The username for the Airtime database user.
|
|
# The default is airtime.
|
|
#
|
|
# dbpass: The password for the Airtime database user.
|
|
# The default is airtime.
|
|
#
|
|
[database]
|
|
host = localhost
|
|
dbname = airtime
|
|
dbuser = airtime
|
|
dbpass = airtime
|
|
#
|
|
# ----------------------------------------------------------------------
|
|
|
|
|
|
# ----------------------------------------------------------------------
|
|
# R A B B I T M Q
|
|
# ----------------------------------------------------------------------
|
|
#
|
|
# These settings are used to configure the RabbitMQ messaging
|
|
# configuration for your Airtime installation.
|
|
#
|
|
# host: The IP address for the RabbitMQ service.
|
|
# The default is 127.0.0.1.
|
|
#
|
|
# port: The port for the RabbitMQ service.
|
|
# The default is 5672.
|
|
#
|
|
# user: The username for the RabbitMQ user.
|
|
# The default is airtime.
|
|
#
|
|
# password: The password for the RabbitMQ user.
|
|
# The default is airtime.
|
|
#
|
|
# vhost: The virtual host for the RabbitMQ service database.
|
|
# The default is /airtime.
|
|
#
|
|
[rabbitmq]
|
|
host = 127.0.0.1
|
|
port = 5672
|
|
user = airtime
|
|
password = airtime
|
|
vhost = /airtime
|
|
#
|
|
# ----------------------------------------------------------------------
|
|
|
|
|
|
# ----------------------------------------------------------------------
|
|
# G E N E R A L S E T T I N G S
|
|
# ----------------------------------------------------------------------
|
|
#
|
|
# These settings are used for Airtime's webserver configuration, and
|
|
# for general-purpose properties.
|
|
#
|
|
# api_key: The API key for your Airtime installation.
|
|
# The value is generated the first time you use Airtime.
|
|
#
|
|
# web_server_user: The default webserver user.
|
|
# The default is www-data.
|
|
#
|
|
# base_url: The host name for your webserver.
|
|
# The default is localhost.
|
|
#
|
|
# base_port: The port for your webserver.
|
|
# The default is 80.
|
|
#
|
|
# base_dir: The root directory for your Airtime installation
|
|
# on your webserver, relative to the base_url.
|
|
# The default is /.
|
|
#
|
|
# cache_ahead_hours: How many hours ahead of time the Airtime playout
|
|
# engine (PYPO) should cache scheduled media files.
|
|
# The default is 1.
|
|
#
|
|
[general]
|
|
api_key =
|
|
web_server_user = www-data
|
|
base_url = localhost
|
|
base_port = 80
|
|
base_dir = /
|
|
cache_ahead_hours = 1
|
|
#
|
|
# ----------------------------------------------------------------------
|
|
|
|
|
|
# ----------------------------------------------------------------------
|
|
# M O N I T
|
|
# ----------------------------------------------------------------------
|
|
#
|
|
# monit_user: The username for the Monit user.
|
|
# The default is guest.
|
|
#
|
|
# monit_password: The password for the Monit user.
|
|
# The default is airtime.
|
|
#
|
|
[monit]
|
|
monit_user = guest
|
|
monit_password = airtime
|
|
#
|
|
# ----------------------------------------------------------------------
|
|
|
|
|
|
# ----------------------------------------------------------------------
|
|
# S O U N D C L O U D
|
|
# ----------------------------------------------------------------------
|
|
#
|
|
# connection_retries: The number of times to retry the connection to
|
|
# Soundcloud.
|
|
# The default is 3.
|
|
#
|
|
# time_between_retries: The time between connection retries, in seconds.
|
|
# The default is 60.
|
|
#
|
|
[soundcloud]
|
|
connection_retries = 3
|
|
time_between_retries = 60
|
|
#
|
|
# ---------------------------------------------------------------------- |