mirror of
https://github.com/bigchaindb/bigchaindb.git
synced 2024-10-13 13:34:05 +00:00

- Update existing docker-containers to support tendermint integration, nginx, mongodb, bigchaindb - Add tendermint configuration files for statefulset, pvc, pv and service. - Update some READMEs.
11 lines
255 B
Plaintext
11 lines
255 B
Plaintext
# Serve the public key for a tendermint instance
|
|
|
|
server {
|
|
listen PUBLIC_KEY_ACCESS_PORT default_server;
|
|
listen [::]:PUBLIC_KEY_ACCESS_PORT default_server ipv6only=on;
|
|
location / {
|
|
root /usr/share/nginx/;
|
|
autoindex on;
|
|
}
|
|
}
|