Skip to content

Commit 4d44217

Browse files
authored
Update readme to include ssl configuration
1 parent 1aa71d1 commit 4d44217

File tree

1 file changed

+15
-1
lines changed

1 file changed

+15
-1
lines changed

README.md

Lines changed: 15 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -63,14 +63,28 @@ To run in production mode via Docker+Uvicorn:
6363

6464
```sh
6565
$ docker run -it --rm=true -p 5000:5000 \
66-
elastic_datashader:0.0.6 \
66+
elastic_datashader:latest \
6767
--log-level=debug \
6868
-b :5000 \
6969
--workers 32 \
7070
--env DATASHADER_ELASTIC=http://user:passwordt@host:9200 \
7171
--env DATASHADER_LOG_LEVEL=DEBUG
7272
```
7373

74+
### SSL Config Options
75+
76+
```
77+
docker run -it --rm=true -p 5000:5000 \
78+
elastic_datashader:latest \
79+
--log-level=debug \
80+
-b :5000 \
81+
--workers 32 \
82+
--env DATASHADER_ELASTIC=http://user:passwordt@host:9200 \
83+
--env DATASHADER_LOG_LEVEL=DEBUG \
84+
--certfile <path> \
85+
--keyfile <path> \
86+
--ca-certs <path>
87+
```
7488
### Running behind NGINX
7589

7690
Run datashader as normal and use the following NGINX configuration snippet:

0 commit comments

Comments
 (0)