Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix print #3896

Merged
merged 4 commits into from
Jul 4, 2018
Merged
Show file tree
Hide file tree
Changes from 3 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ templates:
httpProcessors:
- !mapUri
mapping:
(https?)://${VISIBLE_WEB_HOST_RE_ESCAPED}/(.*): "http://${GEOPORTAL_INTERNAL_URL}/$2"
(https?)://${VISIBLE_WEB_HOST_RE_ESCAPED}${VISIBLE_ENTRY_POINT_RE_ESCAPED}(.*): "${GEOPORTAL_INTERNAL_URL}${VISIBLE_ENTRY_POINT}$2"
- !forwardHeaders
matchers:
- !localMatch {}
Expand All @@ -62,12 +62,11 @@ templates:
- X-Request-ID
- !restrictUris
matchers:
- !localMatch
pathRegex: '${VISIBLE_ENTRY_POINT_RE_ESCAPED}mapserv_proxy'
- !localMatch
pathRegex: '${VISIBLE_ENTRY_POINT_RE_ESCAPED}tiles/.*'
- !localMatch
reject: true
- !hostnameMatch
host: geoportal
port: 8080
- !ipMatch
ip: 10.0.0.0
mask: 255.0.0.0
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -34,8 +34,8 @@ vars:
PGUSER: www-data
PGPASSWORD: www-data
PGDATABASE: geomapfish
GEOPORTAL_INTERNAL_URL: http://geoportal/
MAPCACHE_URL: http://mapcache/mapcache/
GEOPORTAL_INTERNAL_URL: http://geoportal:8080
MAPCACHE_URL: http://mapcache:8080/mapcache/
MAPSERVER_URL: http://mapserver:8080/
MEMCACHED_HOST: memcached
MEMCACHED_PORT: 11211
Expand Down