diff options
Diffstat (limited to 'README')
-rw-r--r-- | README | 35 |
1 files changed, 17 insertions, 18 deletions
@@ -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~~~ |