2014-01-07 20:32:12 +00:00
|
|
|
|
|
|
|
|
-- see http://www.icecast.org/docs/icecast-2.3.3/icecast2_config_file.html#limits
|
|
|
|
|
CREATE TABLE icecast_limits (
|
|
|
|
|
id VARCHAR(64) PRIMARY KEY NOT NULL DEFAULT uuid_generate_v4(),
|
|
|
|
|
|
|
|
|
|
-- number of listening clients
|
|
|
|
|
clients INTEGER NOT NULL DEFAULT 1000,
|
|
|
|
|
|
|
|
|
|
--number of sources include souce clients and relays
|
|
|
|
|
sources INTEGER NOT NULL DEFAULT 50,
|
|
|
|
|
|
|
|
|
|
-- maximum size (in bytes) of the stream queue
|
|
|
|
|
queue_size INTEGER NOT NULL DEFAULT 102400,
|
|
|
|
|
|
|
|
|
|
-- does not appear to be used
|
2014-01-17 04:51:19 +00:00
|
|
|
client_timeout INTEGER DEFAULT 30,
|
2014-01-07 20:32:12 +00:00
|
|
|
|
|
|
|
|
-- The maximum time (in seconds) to wait for a request to come in once
|
|
|
|
|
-- the client has made a connection to the server.
|
|
|
|
|
-- In general this value should not need to be tweaked.
|
|
|
|
|
header_timeout INTEGER DEFAULT 15,
|
|
|
|
|
|
|
|
|
|
-- If a connected source does not send any data within this
|
|
|
|
|
-- timeout period (in seconds), then the source connection
|
|
|
|
|
-- will be removed from the server.
|
|
|
|
|
source_timeout INTEGER DEFAULT 10,
|
|
|
|
|
|
|
|
|
|
-- The burst size is the amount of data (in bytes)
|
|
|
|
|
-- to burst to a client at connection time.
|
|
|
|
|
burst_size INTEGER DEFAULT 65536,
|
|
|
|
|
|
|
|
|
|
created_at TIMESTAMP NOT NULL DEFAULT CURRENT_TIMESTAMP,
|
|
|
|
|
updated_at TIMESTAMP NOT NULL DEFAULT CURRENT_TIMESTAMP
|
|
|
|
|
|
|
|
|
|
);
|
|
|
|
|
|
|
|
|
|
|
2014-01-17 04:51:19 +00:00
|
|
|
CREATE TABLE icecast_admin_authentications (
|
2014-01-07 20:32:12 +00:00
|
|
|
id VARCHAR(64) PRIMARY KEY NOT NULL DEFAULT uuid_generate_v4(),
|
|
|
|
|
|
|
|
|
|
-- The unencrypted password used by sources to connect to icecast2.
|
2014-01-17 04:51:19 +00:00
|
|
|
-- The DEFAULT username for all source connections is 'source' but
|
|
|
|
|
-- this option allows to specify a DEFAULT password. This and the username
|
2014-01-07 20:32:12 +00:00
|
|
|
-- can be changed in the individual mount sections.
|
2014-01-17 04:51:19 +00:00
|
|
|
source_password VARCHAR(64) NOT NULL,
|
2014-01-07 20:32:12 +00:00
|
|
|
|
|
|
|
|
-- Used in the master server as part of the authentication when a slave requests
|
2014-01-17 04:51:19 +00:00
|
|
|
-- the list of streams to relay. The DEFAULT username is 'relay'
|
|
|
|
|
relay_user VARCHAR(64) NOT NULL,
|
|
|
|
|
relay_password VARCHAR(64) NOT NULL,
|
2014-01-07 20:32:12 +00:00
|
|
|
|
|
|
|
|
--The username/password used for all administration functions.
|
2014-01-17 04:51:19 +00:00
|
|
|
admin_user VARCHAR(64) NOT NULL,
|
|
|
|
|
admin_password VARCHAR(64) NOT NULL,
|
2014-01-07 20:32:12 +00:00
|
|
|
|
|
|
|
|
created_at TIMESTAMP NOT NULL DEFAULT CURRENT_TIMESTAMP,
|
|
|
|
|
updated_at TIMESTAMP NOT NULL DEFAULT CURRENT_TIMESTAMP
|
|
|
|
|
);
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
--contains all the settings for listing a stream on any of the Icecast2 YP Directory servers.
|
|
|
|
|
-- Multiple occurances of this section can be specified in order to be listed on multiple directory servers.
|
2014-01-17 04:51:19 +00:00
|
|
|
CREATE TABLE icecast_directories (
|
2014-01-07 20:32:12 +00:00
|
|
|
id VARCHAR(64) PRIMARY KEY NOT NULL DEFAULT uuid_generate_v4(),
|
2014-01-17 04:51:19 +00:00
|
|
|
yp_url_timeout INTEGER NOT NULL DEFAULT 15,
|
|
|
|
|
yp_url VARCHAR(1024) NOT NULL UNIQUE,
|
2014-01-07 20:32:12 +00:00
|
|
|
created_at TIMESTAMP NOT NULL DEFAULT CURRENT_TIMESTAMP,
|
|
|
|
|
updated_at TIMESTAMP NOT NULL DEFAULT CURRENT_TIMESTAMP
|
|
|
|
|
);
|
|
|
|
|
|
2014-01-17 04:51:19 +00:00
|
|
|
CREATE TABLE icecast_listen_sockets (
|
2014-01-07 20:32:12 +00:00
|
|
|
id VARCHAR(64) PRIMARY KEY NOT NULL DEFAULT uuid_generate_v4(),
|
|
|
|
|
|
|
|
|
|
-- The TCP port that will be used to accept client connections.
|
2014-01-17 04:51:19 +00:00
|
|
|
port INTEGER NOT NULL DEFAULT 8001,
|
2014-01-07 20:32:12 +00:00
|
|
|
|
|
|
|
|
-- An optional IP address that can be used to bind to a specific network card.
|
|
|
|
|
-- If not supplied, then it will bind to all interfaces.
|
2014-01-17 04:51:19 +00:00
|
|
|
bind_address VARCHAR(1024),
|
2014-01-07 20:32:12 +00:00
|
|
|
|
2014-01-17 04:51:19 +00:00
|
|
|
shoutcast_mount VARCHAR(1024),
|
|
|
|
|
shoutcast_compat INTEGER,
|
2014-01-07 20:32:12 +00:00
|
|
|
|
|
|
|
|
created_at TIMESTAMP NOT NULL DEFAULT CURRENT_TIMESTAMP,
|
|
|
|
|
updated_at TIMESTAMP NOT NULL DEFAULT CURRENT_TIMESTAMP
|
|
|
|
|
);
|
|
|
|
|
|
|
|
|
|
|
2014-01-17 04:51:19 +00:00
|
|
|
CREATE TABLE icecast_relays (
|
2014-01-07 20:32:12 +00:00
|
|
|
id VARCHAR(64) PRIMARY KEY NOT NULL DEFAULT uuid_generate_v4(),
|
|
|
|
|
|
|
|
|
|
-- ip address of server we are relaying from and port number
|
2014-01-17 04:51:19 +00:00
|
|
|
server VARCHAR(1024) NOT NULL,
|
|
|
|
|
port INTEGER NOT NULL DEFAULT 8001,
|
2014-01-07 20:32:12 +00:00
|
|
|
|
|
|
|
|
-- mount at server. eg /example.ogg
|
2014-01-17 04:51:19 +00:00
|
|
|
mount VARCHAR(1024) NOT NULL,
|
2014-01-07 20:32:12 +00:00
|
|
|
-- eg /different.ogg
|
2014-01-17 04:51:19 +00:00
|
|
|
local_mount VARCHAR(1024),
|
2014-01-07 20:32:12 +00:00
|
|
|
-- eg joe. could be null
|
2014-01-17 04:51:19 +00:00
|
|
|
username VARCHAR(64),
|
2014-01-07 20:32:12 +00:00
|
|
|
-- user password
|
2014-01-17 04:51:19 +00:00
|
|
|
password VARCHAR(64),
|
|
|
|
|
relay_shoutcast_metadata BOOLEAN DEFAULT FALSE,
|
2014-01-07 20:32:12 +00:00
|
|
|
--- relay only if we have someone wanting to listen
|
2014-01-17 04:51:19 +00:00
|
|
|
on_demand BOOLEAN DEFAULT TRUE,
|
2014-01-07 20:32:12 +00:00
|
|
|
|
2014-01-10 21:03:33 +00:00
|
|
|
created_at TIMESTAMP NOT NULL DEFAULT CURRENT_TIMESTAMP,
|
|
|
|
|
updated_at TIMESTAMP NOT NULL DEFAULT CURRENT_TIMESTAMP
|
2014-01-07 20:32:12 +00:00
|
|
|
);
|
|
|
|
|
|
2014-01-17 04:51:19 +00:00
|
|
|
CREATE TABLE icecast_user_authentications(
|
2014-01-07 20:32:12 +00:00
|
|
|
id VARCHAR(64) PRIMARY KEY NOT NULL DEFAULT uuid_generate_v4(),
|
|
|
|
|
--"htpasswd or url"
|
2014-01-10 21:03:33 +00:00
|
|
|
-- real name is type
|
2014-01-17 04:51:19 +00:00
|
|
|
authentication_type VARCHAR(16) DEFAULT 'url',
|
2014-01-07 20:32:12 +00:00
|
|
|
-- these are for httpasswd
|
2014-01-17 04:51:19 +00:00
|
|
|
filename VARCHAR(1024),
|
|
|
|
|
allow_duplicate_users BOOLEAN,
|
2014-01-07 20:32:12 +00:00
|
|
|
|
|
|
|
|
-- these options are for url
|
|
|
|
|
-- eg value="http://myauthserver.com/stream_start.php"
|
2014-01-17 04:51:19 +00:00
|
|
|
mount_add VARCHAR(1024),
|
2014-01-07 20:32:12 +00:00
|
|
|
--value="http://myauthserver.com/stream_end.php"
|
2014-01-17 04:51:19 +00:00
|
|
|
mount_remove VARCHAR(1024),
|
2014-01-07 20:32:12 +00:00
|
|
|
--value="http://myauthserver.com/listener_joined.php"
|
2014-01-17 04:51:19 +00:00
|
|
|
listener_add VARCHAR(1024),
|
2014-01-07 20:32:12 +00:00
|
|
|
--value="http://myauthserver.com/listener_left.php"
|
2014-01-17 04:51:19 +00:00
|
|
|
listener_remove VARCHAR(1024),
|
2014-01-07 20:32:12 +00:00
|
|
|
-- value="user"
|
2014-01-17 04:51:19 +00:00
|
|
|
username VARCHAR(64),
|
2014-01-07 20:32:12 +00:00
|
|
|
-- value="pass"
|
2014-01-17 04:51:19 +00:00
|
|
|
password VARCHAR(64),
|
2014-01-07 20:32:12 +00:00
|
|
|
-- value="icecast-auth-user: 1"
|
2014-01-17 04:51:19 +00:00
|
|
|
auth_header VARCHAR(64) DEFAULT 'icecast-auth-user: 1',
|
2014-01-07 20:32:12 +00:00
|
|
|
-- value="icecast-auth-timelimit:"
|
2014-01-17 04:51:19 +00:00
|
|
|
timelimit_header VARCHAR(64) DEFAULT 'icecast-auth-timelimit:',
|
2014-01-07 20:32:12 +00:00
|
|
|
|
|
|
|
|
created_at TIMESTAMP NOT NULL DEFAULT CURRENT_TIMESTAMP,
|
|
|
|
|
updated_at TIMESTAMP NOT NULL DEFAULT CURRENT_TIMESTAMP
|
|
|
|
|
);
|
|
|
|
|
|
|
|
|
|
|
2014-01-17 04:51:19 +00:00
|
|
|
CREATE UNLOGGED TABLE icecast_mounts (
|
2014-01-07 20:32:12 +00:00
|
|
|
id VARCHAR(64) PRIMARY KEY NOT NULL DEFAULT uuid_generate_v4(),
|
|
|
|
|
-- eg/example-complex.ogg
|
2014-01-17 04:51:19 +00:00
|
|
|
mount_name VARCHAR(1024) UNIQUE NOT NULL,
|
|
|
|
|
username VARCHAR(64),
|
|
|
|
|
password VARCHAR(64),
|
|
|
|
|
max_listeners INTEGER DEFAULT 4,
|
|
|
|
|
max_listener_duration INTEGER DEFAULT 3600,
|
2014-01-07 20:32:12 +00:00
|
|
|
-- dump of the stream coming through on this mountpoint.
|
|
|
|
|
-- eg /tmp/dump-example1.ogg
|
2014-01-17 04:51:19 +00:00
|
|
|
dump_file VARCHAR(1024),
|
2014-01-07 20:32:12 +00:00
|
|
|
-- intro music to play
|
|
|
|
|
-- This optional value specifies a mountpoint that clients are automatically moved to
|
|
|
|
|
-- if the source shuts down or is not streaming at the time a listener connects.
|
2014-01-17 04:51:19 +00:00
|
|
|
intro VARCHAR(1024),
|
|
|
|
|
fallback_mount VARCHAR(1024),
|
2014-01-07 20:32:12 +00:00
|
|
|
-- When enabled, this allows a connecting source client or relay on this mountpoint
|
|
|
|
|
-- to move listening clients back from the fallback mount.
|
2014-01-17 04:51:19 +00:00
|
|
|
fallback_override BOOLEAN DEFAULT TRUE,
|
2014-01-07 20:32:12 +00:00
|
|
|
|
|
|
|
|
-- When set to 1, this will cause new listeners, when the max listener count for the mountpoint
|
|
|
|
|
-- has been reached, to move to the fallback mount if there is one specified.
|
2014-01-17 04:51:19 +00:00
|
|
|
fallback_when_full BOOLEAN DEFAULT TRUE,
|
2014-01-07 20:32:12 +00:00
|
|
|
|
|
|
|
|
--For non-Ogg streams like MP3, the metadata that is inserted into the stream often
|
|
|
|
|
-- has no defined character set.
|
2014-01-17 04:51:19 +00:00
|
|
|
charset VARCHAR(1024) DEFAULT 'ISO8859-1',
|
|
|
|
|
-- possible values are -1, 0, 1
|
2014-01-10 21:03:33 +00:00
|
|
|
-- real name is public but this is reserved word in ruby
|
2014-01-17 04:51:19 +00:00
|
|
|
is_public INTEGER DEFAULT 0,
|
2014-01-07 20:32:12 +00:00
|
|
|
|
2014-01-17 04:51:19 +00:00
|
|
|
stream_name VARCHAR(1024),
|
|
|
|
|
stream_description VARCHAR(10000),
|
2014-01-07 20:32:12 +00:00
|
|
|
-- direct to user page
|
2014-01-17 04:51:19 +00:00
|
|
|
stream_url VARCHAR(1024),
|
2014-01-07 20:32:12 +00:00
|
|
|
-- get this from the session info
|
2014-01-17 04:51:19 +00:00
|
|
|
genre VARCHAR(256),
|
|
|
|
|
bitrate INTEGER,
|
2014-01-10 21:03:33 +00:00
|
|
|
-- real name is type but this is reserved name in ruby
|
2014-01-17 04:51:19 +00:00
|
|
|
mime_type VARCHAR(64) NOT NULL DEFAULT 'application/ogg' ,
|
|
|
|
|
subtype VARCHAR(64) NOT NULL DEFAULT 'vorbis',
|
|
|
|
|
|
|
|
|
|
-- This optional setting allows for providing a burst size which overrides the
|
|
|
|
|
-- DEFAULT burst size as defined in limits. The value is in bytes.
|
|
|
|
|
burst_size INTEGER,
|
|
|
|
|
mp3_metadata_interval INTEGER,
|
|
|
|
|
|
2014-01-07 20:32:12 +00:00
|
|
|
-- Enable this to prevent this mount from being shown on the xsl pages.
|
|
|
|
|
-- This is mainly for cases where a local relay is configured and you do
|
|
|
|
|
-- not want the source of the local relay to be shown
|
2014-01-17 04:51:19 +00:00
|
|
|
hidden BOOLEAN DEFAULT TRUE,
|
2014-01-07 20:32:12 +00:00
|
|
|
|
|
|
|
|
--called when the source connects or disconnects. The scripts are called with the name of the mount
|
2014-01-17 04:51:19 +00:00
|
|
|
on_connect VARCHAR(1024),
|
|
|
|
|
on_disconnect VARCHAR(1024),
|
2014-01-07 20:32:12 +00:00
|
|
|
|
2014-01-17 04:51:19 +00:00
|
|
|
-- references icecast_user_authentications(id)
|
|
|
|
|
authentication_id varchar(64) DEFAULT NULL,
|
2014-01-14 21:22:05 +00:00
|
|
|
|
2014-01-07 20:32:12 +00:00
|
|
|
created_at TIMESTAMP NOT NULL DEFAULT CURRENT_TIMESTAMP,
|
2014-01-10 21:03:33 +00:00
|
|
|
updated_at TIMESTAMP NOT NULL DEFAULT CURRENT_TIMESTAMP
|
2014-01-07 20:32:12 +00:00
|
|
|
);
|
|
|
|
|
|
|
|
|
|
|
2014-01-17 04:51:19 +00:00
|
|
|
CREATE TABLE icecast_paths (
|
2014-01-07 20:32:12 +00:00
|
|
|
id VARCHAR(64) PRIMARY KEY NOT NULL DEFAULT uuid_generate_v4(),
|
2014-01-17 19:55:26 +00:00
|
|
|
base_dir VARCHAR(1024) NOT NULL DEFAULT './',
|
2014-01-17 04:51:19 +00:00
|
|
|
log_dir VARCHAR(1024) NOT NULL DEFAULT './logs',
|
2014-01-17 19:55:26 +00:00
|
|
|
pid_file VARCHAR(1024) DEFAULT './icecast.pid',
|
2014-01-17 04:51:19 +00:00
|
|
|
web_root VARCHAR(1024) NOT NULL DEFAULT './web',
|
|
|
|
|
admin_root VARCHAR(1024) NOT NULL DEFAULT './admin',
|
|
|
|
|
allow_ip VARCHAR(1024),
|
|
|
|
|
deny_ip VARCHAR(1024),
|
|
|
|
|
alias_source VARCHAR(1024),
|
|
|
|
|
alias_dest VARCHAR(1024),
|
2014-01-07 20:32:12 +00:00
|
|
|
|
|
|
|
|
created_at TIMESTAMP NOT NULL DEFAULT CURRENT_TIMESTAMP,
|
|
|
|
|
updated_at TIMESTAMP NOT NULL DEFAULT CURRENT_TIMESTAMP
|
|
|
|
|
);
|
|
|
|
|
|
|
|
|
|
|
2014-01-17 04:51:19 +00:00
|
|
|
CREATE TABLE icecast_loggings (
|
|
|
|
|
id VARCHAR(64) PRIMARY KEY NOT NULL DEFAULT uuid_generate_v4(),
|
|
|
|
|
access_log VARCHAR(1024) NOT NULL DEFAULT 'access.log',
|
|
|
|
|
error_log VARCHAR(1024) NOT NULL DEFAULT 'error.log',
|
|
|
|
|
playlist_log VARCHAR(1024),
|
|
|
|
|
-- 4 Debug, 3 Info, 2 Warn, 1 Error
|
|
|
|
|
log_level INTEGER NOT NULL DEFAULT 3 ,
|
|
|
|
|
log_archive BOOLEAN,
|
|
|
|
|
-- 10 meg log file by default
|
|
|
|
|
log_size INTEGER DEFAULT 10000,
|
2014-01-07 20:32:12 +00:00
|
|
|
|
2014-01-17 04:51:19 +00:00
|
|
|
created_at TIMESTAMP NOT NULL DEFAULT CURRENT_TIMESTAMP,
|
|
|
|
|
updated_at TIMESTAMP NOT NULL DEFAULT CURRENT_TIMESTAMP
|
2014-01-07 20:32:12 +00:00
|
|
|
);
|
|
|
|
|
|
|
|
|
|
|
2014-01-17 04:51:19 +00:00
|
|
|
CREATE TABLE icecast_securities (
|
|
|
|
|
id VARCHAR(64) PRIMARY KEY NOT NULL DEFAULT uuid_generate_v4(),
|
|
|
|
|
chroot BOOLEAN NOT NULL DEFAULT FALSE,
|
|
|
|
|
change_owner_user VARCHAR(64),
|
|
|
|
|
change_owner_group VARCHAR(64),
|
|
|
|
|
created_at TIMESTAMP NOT NULL DEFAULT CURRENT_TIMESTAMP,
|
|
|
|
|
updated_at TIMESTAMP NOT NULL DEFAULT CURRENT_TIMESTAMP
|
|
|
|
|
);
|
2014-01-07 20:32:12 +00:00
|
|
|
|
|
|
|
|
|
2014-01-17 04:51:19 +00:00
|
|
|
CREATE TABLE icecast_master_server_relays(
|
|
|
|
|
id VARCHAR(64) PRIMARY KEY DEFAULT uuid_generate_v4(),
|
|
|
|
|
|
|
|
|
|
-- ip address of the master icecast server and port number
|
|
|
|
|
master_server VARCHAR(1024) NOT NULL,
|
|
|
|
|
master_server_port INTEGER NOT NULL DEFAULT 8001,
|
|
|
|
|
--The interval (in seconds) that the Relay Server will poll the Master Server for any new mountpoints to relay.
|
|
|
|
|
master_update_interval INTEGER NOT NULL DEFAULT 120,
|
|
|
|
|
-- This is the relay username on the master server. It is used to query the server for a list of
|
|
|
|
|
-- mountpoints to relay. If not specified then 'relay' is used
|
|
|
|
|
master_username VARCHAR(64) NOT NULL,
|
|
|
|
|
master_password VARCHAR(64) NOT NULL,
|
2014-01-07 20:32:12 +00:00
|
|
|
|
2014-01-17 04:51:19 +00:00
|
|
|
--Global on-demand setting for relays. Because you do not have individual relay options when
|
|
|
|
|
-- using a master server relay, you still may want those relays to only pull the stream when
|
|
|
|
|
-- there is at least one listener on the slave. The typical case here is to avoid surplus
|
|
|
|
|
-- bandwidth costs when no one is listening.
|
|
|
|
|
relays_on_demand BOOLEAN NOT NULL DEFAULT TRUE,
|
2014-01-14 21:22:05 +00:00
|
|
|
|
2014-01-17 04:51:19 +00:00
|
|
|
created_at TIMESTAMP NOT NULL DEFAULT CURRENT_TIMESTAMP,
|
|
|
|
|
updated_at TIMESTAMP NOT NULL DEFAULT CURRENT_TIMESTAMP
|
|
|
|
|
);
|
|
|
|
|
|
2014-01-17 19:55:26 +00:00
|
|
|
|
|
|
|
|
CREATE TABLE icecast_templates (
|
|
|
|
|
id VARCHAR(64) PRIMARY KEY DEFAULT uuid_generate_v4(),
|
|
|
|
|
|
|
|
|
|
limit_id VARCHAR(64) REFERENCES icecast_limits(id),
|
|
|
|
|
admin_auth_id VARCHAR(64) REFERENCES icecast_admin_authentications(id),
|
|
|
|
|
directory_id VARCHAR(64) REFERENCES icecast_directories(id),
|
|
|
|
|
master_relay_id VARCHAR(64) REFERENCES icecast_master_server_relays(id),
|
|
|
|
|
path_id VARCHAR(64) REFERENCES icecast_paths(id),
|
|
|
|
|
logging_id VARCHAR(64) REFERENCES icecast_loggings(id),
|
|
|
|
|
security_id VARCHAR(64) REFERENCES icecast_securities(id),
|
|
|
|
|
|
|
|
|
|
location VARCHAR(1024) NOT NULL,
|
|
|
|
|
name VARCHAR(256) NOT NULL,
|
|
|
|
|
admin_email VARCHAR(1024) NOT NULL DEFAULT 'admin@jamkazam.com',
|
|
|
|
|
fileserve BOOLEAN NOT NULL DEFAULT TRUE,
|
|
|
|
|
|
|
|
|
|
created_at TIMESTAMP NOT NULL DEFAULT CURRENT_TIMESTAMP,
|
|
|
|
|
updated_at TIMESTAMP NOT NULL DEFAULT CURRENT_TIMESTAMP
|
|
|
|
|
);
|
|
|
|
|
|
|
|
|
|
|
2014-01-17 04:51:19 +00:00
|
|
|
CREATE TABLE icecast_servers (
|
2014-01-07 20:32:12 +00:00
|
|
|
id VARCHAR(64) PRIMARY KEY DEFAULT uuid_generate_v4(),
|
2014-01-14 21:22:05 +00:00
|
|
|
--use this to mark the server configuration as needing to be regenerated
|
2014-01-17 04:51:19 +00:00
|
|
|
config_changed BOOLEAN DEFAULT FALSE,
|
|
|
|
|
limit_id VARCHAR(64) REFERENCES icecast_limits(id),
|
|
|
|
|
admin_auth_id VARCHAR(64) REFERENCES icecast_admin_authentications(id),
|
|
|
|
|
directory_id VARCHAR(64) REFERENCES icecast_directories(id),
|
|
|
|
|
master_relay_id VARCHAR(64) REFERENCES icecast_master_server_relays(id),
|
|
|
|
|
path_id VARCHAR(64) REFERENCES icecast_paths(id),
|
|
|
|
|
logging_id VARCHAR(64) REFERENCES icecast_loggings(id),
|
|
|
|
|
security_id VARCHAR(64) REFERENCES icecast_securities(id),
|
2014-01-17 19:55:26 +00:00
|
|
|
template_id VARCHAR(64) NOT NULL REFERENCES icecast_templates(id),
|
2014-01-17 04:51:19 +00:00
|
|
|
|
|
|
|
|
-- This is the DNS name or IP address that will be used for the stream directory lookups or possibily
|
|
|
|
|
-- the playlist generation if a Host header is not provided. While localhost is shown as an example,
|
|
|
|
|
-- in fact you will want something that your listeners can use.
|
|
|
|
|
hostname VARCHAR(1024) NOT NULL,
|
2014-01-17 19:55:26 +00:00
|
|
|
server_id VARCHAR(1024) UNIQUE NOT NULL,
|
2014-01-17 04:51:19 +00:00
|
|
|
--This sets the location string for this icecast instance. It will be shown e.g in the web interface.
|
2014-01-17 19:55:26 +00:00
|
|
|
location VARCHAR(1024),
|
2014-01-17 04:51:19 +00:00
|
|
|
--This should contain contact details for getting in touch with the server administrator.
|
2014-01-17 19:55:26 +00:00
|
|
|
admin_email VARCHAR(1024),
|
2014-01-17 04:51:19 +00:00
|
|
|
-- This flag turns on the icecast2 fileserver from which static files can be served.
|
|
|
|
|
-- All files are served relative to the path specified in the <paths><webroot> configuration
|
|
|
|
|
-- setting. By DEFAULT the setting is enabled so that requests for the images
|
|
|
|
|
-- on the status page are retrievable.
|
2014-01-17 19:55:26 +00:00
|
|
|
fileserve BOOLEAN,
|
2014-01-17 04:51:19 +00:00
|
|
|
-- This optional setting allows for the administrator of the server to override the
|
|
|
|
|
-- DEFAULT server identification. The DEFAULT is icecast followed by a version number
|
|
|
|
|
-- and most will not care to change it however this setting will change that.
|
2014-01-07 20:32:12 +00:00
|
|
|
|
2014-01-14 21:22:05 +00:00
|
|
|
created_at TIMESTAMP NOT NULL DEFAULT CURRENT_TIMESTAMP,
|
|
|
|
|
updated_at TIMESTAMP NOT NULL DEFAULT CURRENT_TIMESTAMP
|
2014-01-07 20:32:12 +00:00
|
|
|
|
2014-01-14 21:22:05 +00:00
|
|
|
);
|
|
|
|
|
|
2014-01-17 04:51:19 +00:00
|
|
|
CREATE TABLE icecast_server_mounts (
|
2014-01-14 21:22:05 +00:00
|
|
|
id VARCHAR(64) PRIMARY KEY DEFAULT uuid_generate_v4(),
|
2014-01-17 04:51:19 +00:00
|
|
|
--REFERENCES icecast_mounts(id) ON DELETE CASCADE,
|
|
|
|
|
icecast_mount_id VARCHAR(64),
|
|
|
|
|
icecast_server_id VARCHAR(64) REFERENCES icecast_servers(id) ON DELETE CASCADE,
|
2014-01-14 21:22:05 +00:00
|
|
|
created_at TIMESTAMP NOT NULL DEFAULT CURRENT_TIMESTAMP,
|
|
|
|
|
updated_at TIMESTAMP NOT NULL DEFAULT CURRENT_TIMESTAMP
|
|
|
|
|
);
|
2014-01-07 20:32:12 +00:00
|
|
|
|
2014-01-17 04:51:19 +00:00
|
|
|
ALTER TABLE icecast_server_mounts ADD CONSTRAINT server_mount_uniqkey UNIQUE (icecast_mount_id, icecast_server_id);
|
2014-01-07 20:32:12 +00:00
|
|
|
|
2014-01-17 04:51:19 +00:00
|
|
|
CREATE TABLE icecast_server_relays (
|
2014-01-14 21:22:05 +00:00
|
|
|
id VARCHAR(64) PRIMARY KEY DEFAULT uuid_generate_v4(),
|
2014-01-17 04:51:19 +00:00
|
|
|
icecast_relay_id VARCHAR(64) REFERENCES icecast_relays(id) ON DELETE CASCADE,
|
|
|
|
|
icecast_server_id VARCHAR(64) REFERENCES icecast_servers(id) ON DELETE CASCADE,
|
2014-01-14 21:22:05 +00:00
|
|
|
created_at TIMESTAMP NOT NULL DEFAULT CURRENT_TIMESTAMP,
|
|
|
|
|
updated_at TIMESTAMP NOT NULL DEFAULT CURRENT_TIMESTAMP
|
2014-01-07 20:32:12 +00:00
|
|
|
);
|
|
|
|
|
|
2014-01-17 04:51:19 +00:00
|
|
|
ALTER TABLE icecast_server_relays ADD CONSTRAINT server_relay_uniqkey UNIQUE (icecast_relay_id, icecast_server_id);
|
2014-01-14 21:22:05 +00:00
|
|
|
|
2014-01-17 04:51:19 +00:00
|
|
|
CREATE TABLE icecast_server_sockets (
|
2014-01-14 21:22:05 +00:00
|
|
|
id VARCHAR(64) PRIMARY KEY DEFAULT uuid_generate_v4(),
|
2014-01-17 04:51:19 +00:00
|
|
|
icecast_listen_socket_id VARCHAR(64) REFERENCES icecast_listen_sockets(id) ON DELETE CASCADE,
|
|
|
|
|
icecast_server_id VARCHAR(64) REFERENCES icecast_servers(id) ON DELETE CASCADE,
|
2014-01-14 21:22:05 +00:00
|
|
|
created_at TIMESTAMP NOT NULL DEFAULT CURRENT_TIMESTAMP,
|
|
|
|
|
updated_at TIMESTAMP NOT NULL DEFAULT CURRENT_TIMESTAMP
|
|
|
|
|
);
|
|
|
|
|
|
2014-01-17 04:51:19 +00:00
|
|
|
ALTER TABLE icecast_server_sockets ADD CONSTRAINT server_socket_uniqkey UNIQUE (icecast_listen_socket_id, icecast_server_id);
|
2014-01-14 21:22:05 +00:00
|
|
|
|
2014-01-17 19:55:26 +00:00
|
|
|
CREATE TABLE icecast_template_sockets (
|
|
|
|
|
id VARCHAR(64) PRIMARY KEY DEFAULT uuid_generate_v4(),
|
|
|
|
|
icecast_listen_socket_id VARCHAR(64) REFERENCES icecast_listen_sockets(id) ON DELETE CASCADE,
|
|
|
|
|
icecast_template_id VARCHAR(64) REFERENCES icecast_templates(id) ON DELETE CASCADE,
|
|
|
|
|
created_at TIMESTAMP NOT NULL DEFAULT CURRENT_TIMESTAMP,
|
|
|
|
|
updated_at TIMESTAMP NOT NULL DEFAULT CURRENT_TIMESTAMP
|
|
|
|
|
);
|
|
|
|
|
|
|
|
|
|
ALTER TABLE icecast_template_sockets ADD CONSTRAINT template_socket_uniqkey UNIQUE (icecast_listen_socket_id, icecast_template_id);
|
|
|
|
|
|
|
|
|
|
|
2014-01-14 21:22:05 +00:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2014-01-07 20:32:12 +00:00
|
|
|
|