tileserver-gl-light 5.5.0-pre.0 → 5.5.0-pre.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +3 -2
- package/docs/usage.rst +9 -1
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,7 +1,8 @@
|
|
|
1
1
|
# tileserver-gl changelog
|
|
2
2
|
|
|
3
|
-
## 5.5.0-pre.
|
|
4
|
-
*
|
|
3
|
+
## 5.5.0-pre.1
|
|
4
|
+
* Add S3 support for PMTiles with multiple AWS credential profiles (https://github.com/maptiler/tileserver-gl/pull/1779) by @acalcutt
|
|
5
|
+
* Create .aws directory passthrough folder in Dockerfile (https://github.com/maptiler/tileserver-gl/pull/1784)
|
|
5
6
|
|
|
6
7
|
## 5.4.0
|
|
7
8
|
* Fix the issue where the tile URL cannot be correctly parsed with the HTTPS protocol when using an nginx proxy service (https://github.com/maptiler/tileserver-gl/pull/1578) by @dakanggo
|
package/docs/usage.rst
CHANGED
|
@@ -80,7 +80,15 @@ You can also use `pmtiles://` or `mbtiles://` prefixes to explicitly specify the
|
|
|
80
80
|
tileserver-gl --file mbtiles://./data/zurich.mbtiles
|
|
81
81
|
|
|
82
82
|
.. note::
|
|
83
|
-
|
|
83
|
+
For S3 sources, AWS credentials must be configured via environment variables, AWS credentials file (`~/.aws/credentials` on Linux/macOS or `C:\Users\USERNAME\.aws\credentials` on Windows), or IAM roles.
|
|
84
|
+
|
|
85
|
+
**When using Docker**, the host credentials file can be mounted to the container's user home directory:
|
|
86
|
+
|
|
87
|
+
::
|
|
88
|
+
|
|
89
|
+
docker run -v ~/.aws/credentials:/home/node/.aws/credentials:ro ... maptiler/tileserver-gl:latest
|
|
90
|
+
|
|
91
|
+
See the Configuration documentation for details on using AWS credential profiles.
|
|
84
92
|
|
|
85
93
|
Default preview style and configuration
|
|
86
94
|
======
|