Skip to content

Commit

Permalink
Make example config file cleaner
Browse files Browse the repository at this point in the history
  • Loading branch information
alebeck committed Dec 14, 2024
1 parent c410613 commit 37a2e33
Showing 1 changed file with 8 additions and 8 deletions.
16 changes: 8 additions & 8 deletions cmd/boring/config.go
Original file line number Diff line number Diff line change
Expand Up @@ -14,14 +14,14 @@ const defaultConfig = `# An example tunnel is defined below.
# For more examples, please visit the project's GitHub page.
# All lines starting with '#' are comments.
#[[tunnels]]
#name = "dev" # Name for the tunnel
#local = 9000 # Local address to listen on
#remote = "localhost:9000" # Remote address to forward to
#host = "dev-server" # Hostname of the server, tries to match against ssh config
#port = 22 # (Optional) Server port, defaults to 22
#user = "neo" # (Optional) Username, tries ssh config and defaults to $USER
#identity = "~/.ssh/id_dev" # (Optional) Key file, tries ssh config and defaults to default keys
# [[tunnels]]
# name = "dev" # Name for the tunnel
# local = 9000 # Local address to listen on
# remote = "localhost:9000" # Remote address to forward to
# host = "dev-server" # Hostname of the server, tries to match against ssh config
# port = 22 # (Optional) Server port, defaults to 22
# user = "neo" # (Optional) Username, tries ssh config and defaults to $USER
# identity = "~/.ssh/id_dev" # (Optional) Key file, tries ssh config and defaults to default keys
`

Expand Down

0 comments on commit 37a2e33

Please sign in to comment.