mirror of
https://github.com/planetmint/planetmint.git
synced 2025-06-17 19:56:35 +00:00
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;
|
|
}
|
|
}
|