summaryrefslogtreecommitdiff
path: root/README
diff options
context:
space:
mode:
authorChristian Pointner <equinox@helsinki.at>2014-09-17 01:23:57 (GMT)
committerChristian Pointner <equinox@helsinki.at>2014-09-17 01:23:57 (GMT)
commit5b15e31b8c54249695b4f4b77dafda84d87e3199 (patch)
tree45ea245a7719a814573531fb344d1cbbc5b857d6 /README
parent3efb9cfe36218a85971c6c84811e10371860f4b8 (diff)
added AUTHORS, LICENCE and README
Diffstat (limited to 'README')
-rw-r--r--README44
1 files changed, 44 insertions, 0 deletions
diff --git a/README b/README
new file mode 100644
index 0000000..e888d17
--- /dev/null
+++ b/README
@@ -0,0 +1,44 @@
+Installation
+============
+
+# sudo aptitude install apache2 libjs-jquery rivendell-server
+# sudo a2enmod ssl authnz_ldap
+
+add the following to /etc/apache2/mods-endabled/ldap.conf:
+
+~~~snip~~~
+LDAPTrustedGlobalCert CA_BASE64 /etc/ldap/ldapscert.pem
+~~~/snip~~~
+
+# sudo rm /etc/apache2/conf.d/rivendell
+
+add the following to the virtualhost config:
+
+~~~snip~~~
+ DocumentRoot /var/www/
+ <Directory /var/www/>
+ Options -Indexes -FollowSymLinks MultiViews
+ AllowOverride None
+ Order allow,deny
+ allow from all
+ RedirectMatch 404 /\\.svn(/|$)
+ </Directory>
+ <Directory /var/www/config>
+ Order allow,deny
+ Deny from all
+ </Directory>
+
+ Include /etc/rivendell/apache.conf
+
+ <Location /authtoken.json>
+ Order deny,allow
+ Deny from All
+ AuthName "Radio Helsinki - Automation Import"
+ AuthType Basic
+ AuthBasicProvider ldap
+ AuthzLDAPAuthoritative off
+ AuthLDAPUrl ldap://ldap.helsinki.at/ou=People,dc=helsinki,dc=at?uid TLS
+ Require valid-user
+ Satisfy any
+ </Location>
+~~~/snip~~~