diff options
author | Christian Pointner <equinox@helsinki.at> | 2015-08-02 22:08:28 (GMT) |
---|---|---|
committer | Christian Pointner <equinox@helsinki.at> | 2015-08-02 22:08:28 (GMT) |
commit | 2f8a3a1c77f496def3defe8e7bc9dd1a0d9bc461 (patch) | |
tree | 1e9548adacb501b498db1c05a63e33f1cd332d70 /README | |
parent | e73536f5b1bebe0bc71de22b9921d880217c1594 (diff) |
updated readme after change apache config
Diffstat (limited to 'README')
-rw-r--r-- | README | 25 |
1 files changed, 13 insertions, 12 deletions
@@ -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~~~ |