-
-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Update readme and add config samples
- Loading branch information
1 parent
19690dc
commit 3dd0fda
Showing
3 changed files
with
28 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
address = "0.0.0.0" # address to which to bind | ||
port = 1337 # port on which to listen for incoming connections | ||
|
||
[logging] | ||
json = false # output logs in json format | ||
loglevel = "info" # how much log output to spam | ||
|
||
[tls] | ||
ca = "ca.crt" # certificate authority cert/bundle | ||
cert = "portal.crt" # client certificate used during mTLS | ||
key = "portal.key" # client key used during mTLS | ||
insecure = false # setting this to true will make speedrun skip portal's certificate validation step |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
[gcp] | ||
projectid = "yourproject" # GCP project ID | ||
|
||
[logging] | ||
json = false # output logs in json format | ||
loglevel = "info" # how much log output to spam | ||
|
||
[portal] | ||
use-private-ip = false # try to connect to private IP of the instances rather than to the public | ||
|
||
[tls] | ||
ca = "ca.crt" # certificate authority cert/bundle | ||
cert = "speedrun.crt" # client certificate used during mTLS | ||
key = "speedrun.key" # client key used during mTLS | ||
insecure = false # setting this to true will make speedrun skip portal's certificate validation step |