Mercurial > lada > lada-client
changeset 942:f2001df0e494
Added Documentation how to enable printing
author | Dustin Demuth <dustin@intevation.de> |
---|---|
date | Fri, 02 Oct 2015 14:58:59 +0200 |
parents | 94d8ea3b98ba |
children | 0a233865a9c3 |
files | INSTALL.markdown app.js |
diffstat | 2 files changed, 7 insertions(+), 1 deletions(-) [+] |
line wrap: on
line diff
--- a/INSTALL.markdown Thu Oct 01 10:24:06 2015 +0200 +++ b/INSTALL.markdown Fri Oct 02 14:58:59 2015 +0200 @@ -146,6 +146,9 @@ Nun muss noch ein Reverse-Proxy eingerichtet werden. Dieser ist nur für bestimmte Adressen aktiv. +Sollte aus dem Lada-Client heraus mittels PrintApp in mapfish-print gedruckt werden, +so ist auch der zweite Proxy notwendig. + Folgende Datei sollte unter `/etc/httpd/conf.d/lada.conf` angelegt werden: ``` <VirtualHost *:80> @@ -157,6 +160,9 @@ # Set multiple Proxys ProxyPass /lada/server http://LADASERVER/lada ProxyPassReverse /lada/server http://LADASERVER/lada + # Add Printing + ProxyPass /lada-client/lada-printer http://MAPFISH-PRINT-URL/lada_print + ProxyPassReverse /lada-client/lada-printer http://MAPFISH-PRINT-URL/lada_print </VirtualHost> ``` Alle Anfragen an die Adresse `/lada/service`, werden nun an den Server
--- a/app.js Thu Oct 01 10:24:06 2015 +0200 +++ b/app.js Fri Oct 02 14:58:59 2015 +0200 @@ -61,7 +61,7 @@ Lada.userroles = ''; Lada.logintime = ''; Lada.mst = []; - Lada.clientVersion = '2.1.1'; + Lada.clientVersion = '2.1.2'; Lada.serverVersion = ''; var queryString = document.location.href.split('?')[1];