File tree Expand file tree Collapse file tree 1 file changed +15
-1
lines changed
Expand file tree Collapse file tree 1 file changed +15
-1
lines changed Original file line number Diff line number Diff 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
7690Run datashader as normal and use the following NGINX configuration snippet:
You can’t perform that action at this time.
0 commit comments