summaryrefslogtreecommitdiff
path: root/README
diff options
context:
space:
mode:
authorChristian Pointner <equinox@helsinki.at>2015-06-18 22:21:44 (GMT)
committerChristian Pointner <equinox@helsinki.at>2015-06-18 22:21:44 (GMT)
commite3b8f1bd887e68d35796d8044072a4758818a529 (patch)
tree9697a812d6d26a98ddb5b84d1b6f11ac0b76e020 /README
parentf53ae9263c55d0c4f447b86fbf8b31d3bbd3beb7 (diff)
tabs vs spaces at readme
Diffstat (limited to 'README')
-rw-r--r--README35
1 files changed, 17 insertions, 18 deletions
diff --git a/README b/README
index c88cad7..55849e6 100644
--- a/README
+++ b/README
@@ -45,36 +45,36 @@ LDAPTrustedGlobalCert CA_BASE64 /etc/ldap/ldapscert.pem
add the following to the virtualhost config:
~~~snip~~~
- DocumentRoot /var/www/rhwebimport/www/
-
+ DocumentRoot /var/www/rhwebimport/www/
<Directory /var/www/rhwebimport/>
- Options -Indexes -FollowSymLinks
- AllowOverride None
+ Options -Indexes -FollowSymLinks
+ AllowOverride None
Require all denied
</Directory>
- <Directory /var/www/rhwebimport/www>
+ <Directory /var/www/rhwebimport/www>
Require all granted
- </Directory>
+ </Directory>
Include /etc/rivendell/apache-2.4.conf
Include /etc/apache2/conf-available/javascript-common.conf
- <Location /rh-bin/>
- SetHandler perl-script
- PerlResponseHandler ModPerl::Registry
- PerlOptions +ParseHeaders
- Options +ExecCGI
+ Alias /rh-bin/ /var/www/rhwebimport/rh-bin/
+ <Location /rh-bin/>
+ SetHandler perl-script
+ PerlResponseHandler ModPerl::Registry
+ PerlOptions +ParseHeaders
+ Options +ExecCGI
Require all granted
- </Location>
- Alias /rh-bin/ /var/www/rhwebimport/rh-bin/
+ </Location>
+ Alias /authtoken.json /var/www/rhwebimport/authtoken.json
<Location /authtoken.json>
SetHandler perl-script
- PerlResponseHandler ModPerl::Registry
- PerlOptions +ParseHeaders
- Options +ExecCGI
+ PerlResponseHandler ModPerl::Registry
+ PerlOptions +ParseHeaders
+ Options +ExecCGI
AuthName "Radio Helsinki - Automation Import"
AuthType Basic
@@ -83,6 +83,5 @@ add the following to the virtualhost config:
Require all denied
Require valid-user
- </Location>
- Alias /authtoken.json /var/www/rhwebimport/authtoken.json
+ </Location>
~~~/snip~~~