8000 fix: update doc and setting example to add port value by rllola · Pull Request #127 · Zondax/namadexer · GitHub
[go: up one dir, main page]
More Web Proxy on the site http://driver.im/
Skip to content
This repository was archived by the owner on Jun 19, 2024. It is now read-only.

fix: update doc and setting example to add port value #127

Merged
merged 1 com 8000 mit into from
Feb 13, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions config/Settings.example.toml
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@ host = "localhost"
user = "postgres"
password = "wow"
dbname = "blockchain"
port = 5432
# Optional field to configure a timeout if database connection
# fails.
connection_timeout = 20
Expand Down
4 changes: 3 additions & 1 deletion docs/04-server.md
4CCD
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,9 @@ host = "localhost"
user = "postgres"
password = "wow"
dbname = "blockchain"

port = 5432
connection_timeout = 20 # Optional timeout value
create_index = true

[server]
serve_at = "0.0.0.0"
Expand Down
0