summaryrefslogtreecommitdiff
path: root/README
diff options
context:
space:
mode:
Diffstat (limited to 'README')
-rw-r--r--README25
1 files changed, 13 insertions, 12 deletions
diff --git a/README b/README
index 997eebb..cba5a51 100644
--- a/README
+++ b/README
@@ -45,17 +45,6 @@ LDAPTrustedGlobalCert CA_BASE64 /etc/ldap/ldapscert.pem
add the following to the virtualhost config:
~~~snip~~~
- DocumentRoot /var/www/rhwebimport/www/
- <Directory /var/www/rhwebimport/>
- Options -Indexes -FollowSymLinks
- AllowOverride None
-
- Require all denied
- </Directory>
- <Directory /var/www/rhwebimport/www>
- Require all granted
- </Directory>
-
Include /etc/rivendell/apache-2.4.conf
Include /etc/apache2/conf-available/javascript-common.conf
@@ -68,7 +57,6 @@ add the following to the virtualhost config:
Require all granted
</Location>
-
<Location /rh-bin/authtoken.json>
SetHandler perl-script
PerlResponseHandler ModPerl::Registry
@@ -85,4 +73,17 @@ add the following to the virtualhost config:
</Location>
ProxyPass "/ntp" "ws://localhost:3000/ntp"
+
+ DocumentRoot /var/www/rhwebimport/www/
+ <Directory /var/www/rhwebimport/>
+ Options -Indexes -FollowSymLinks
+ AllowOverride None
+
+ Require all denied
+ </Directory>
+ <Directory /var/www/rhwebimport/www>
+ Require all granted
+ </Directory>
+ AliasMatch "^/(js|img|styles)(.*)" "/var/www/rhwebimport/www/$1$2"
+ AliasMatch "^(.*)" "/var/www/rhwebimport/www/index.html"
~~~/snip~~~