openbsd-ports/www/mod_mp3/files/mp3_with_postgresql.conf
naddy f01c5da19c Import mod_mp3 0.39.
Submitted by Xavier Santolaria <xavier@santolaria.net>.

mod_mp3 turns the Apache Web Server into an MP3 or Ogg streaming
server.  It can play from a list of files, either in order or
randomly.  It can also be used to cache MP3s into memory and have
the server operate entirely from memory.
2003-05-20 01:57:18 +00:00

26 lines
701 B
Plaintext

# $OpenBSD: mp3_with_postgresql.conf,v 1.1.1.1 2003/05/20 01:57:18 naddy Exp $
<IfModule mod_mp3.c>
Listen 80
Listen 8000
<VirtualHost _default_:8000>
MP3Engine On
MP3DispatchAgent "pgsql"
MP3PgConnectInfo "localhost" "mymusic" "mum"
MP3PgInfo "music" "songs"
MP3PgTokenTable "tokens"
MP3CastName "mod_mp3"
MP3Genre "Sounds of Open Source"
MP3 /export/mp3
Timeout 1200
</VirtualHost>
# Allow server status reports, with the URL of http://servername/server-status
# Change the ".your_domain.com" to match your domain to enable.
#
#<Location /mp3-status>
# SetHandler mp3-status
# Order deny,allow
# Deny from all
# Allow from .your_domain.com
#</Location>
</IfModule>