From 83c8e5b80d62b14e766fa7e7c8682562a018bd32 Mon Sep 17 00:00:00 2001 From: GZNGET FOSS Team Date: Fri, 30 Jun 2017 12:35:13 +0200 Subject: initial commit dating 20161031 --- data/lighttpd/lighttpd.conf | 21 +++++++++++++++++++++ data/lighttpd/plain.user | 1 + data/www/index.html | 21 +++++++++++++++++++++ data/www/private/.placeholder | 0 4 files changed, 43 insertions(+) create mode 100644 data/lighttpd/lighttpd.conf create mode 100644 data/lighttpd/plain.user create mode 100644 data/www/index.html create mode 100644 data/www/private/.placeholder (limited to 'data') diff --git a/data/lighttpd/lighttpd.conf b/data/lighttpd/lighttpd.conf new file mode 100644 index 0000000..58c63e5 --- /dev/null +++ b/data/lighttpd/lighttpd.conf @@ -0,0 +1,21 @@ +server.modules = ( + "mod_access", + "mod_auth", +) + +server.document-root = "/var/lib/arctica-mediaplayer/www" +server.bind = "127.0.0.1" +server.port = 9199 +server.follow-symlink = "enable" + +auth.debug = 0 +auth.backend = "plain" +auth.backend.plain.userfile = "/var/lib/arctica-mediaplayer/lighttpd/plain.user" + +auth.require = ( "/private/" => + ( + "method" => "basic", + "realm" => "Arctic Media Player Streams", + "require" => "valid-user" + ), +) diff --git a/data/lighttpd/plain.user b/data/lighttpd/plain.user new file mode 100644 index 0000000..9b3cde9 --- /dev/null +++ b/data/lighttpd/plain.user @@ -0,0 +1 @@ +username:password diff --git a/data/www/index.html b/data/www/index.html new file mode 100644 index 0000000..9802a59 --- /dev/null +++ b/data/www/index.html @@ -0,0 +1,21 @@ + + + + +This page intentionally left blank (default) + + + +
+Arctica Media Player Streaming Server:
This start page has been intentionally left blank. +
+ + + diff --git a/data/www/private/.placeholder b/data/www/private/.placeholder new file mode 100644 index 0000000..e69de29 -- cgit v1.2.3