Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
G
goshimmer
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container Registry
Model registry
Operate
Environments
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
iota-imt
goshimmer
Commits
83fc6010
Unverified
Commit
83fc6010
authored
5 years ago
by
Wolfgang Welz
Committed by
GitHub
5 years ago
Browse files
Options
Downloads
Patches
Plain Diff
Use local bind on default (#177)
parent
83d12c1a
No related branches found
No related tags found
No related merge requests found
Changes
4
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
config.json
+3
-3
3 additions, 3 deletions
config.json
plugins/dashboard/parameters.go
+1
-1
1 addition, 1 deletion
plugins/dashboard/parameters.go
plugins/graph/parameters.go
+1
-1
1 addition, 1 deletion
plugins/graph/parameters.go
plugins/webapi/parameters.go
+1
-1
1 addition, 1 deletion
plugins/webapi/parameters.go
with
6 additions
and
6 deletions
config.json
+
3
−
3
View file @
83fc6010
...
...
@@ -17,7 +17,7 @@
"port"
:
14626
},
"dashboard"
:
{
"bindAddress"
:
"
0
.0.0.
0
:8081"
"bindAddress"
:
"
127
.0.0.
1
:8081"
},
"database"
:
{
"directory"
:
"mainnetdb"
...
...
@@ -26,7 +26,7 @@
"port"
:
14666
},
"graph"
:
{
"bindAddress"
:
"127.0.0.1:808
3
"
,
"bindAddress"
:
"127.0.0.1:808
2
"
,
"domain"
:
""
,
"networkName"
:
"GoShimmer"
,
"socketIOPath"
:
"socket.io-client/dist/socket.io.js"
,
...
...
@@ -56,7 +56,7 @@
"privateKey"
:
""
,
"username"
:
"goshimmer"
},
"bindAddress"
:
"
0
.0.0.
0
:8080"
"bindAddress"
:
"
127
.0.0.
1
:8080"
},
"zeromq"
:
{
"port"
:
5556
...
...
This diff is collapsed.
Click to expand it.
plugins/dashboard/parameters.go
+
1
−
1
View file @
83fc6010
...
...
@@ -9,5 +9,5 @@ const (
)
func
init
()
{
flag
.
String
(
CFG_BIND_ADDRESS
,
"
0
.0.0.
0
:8081"
,
"the bind address for the dashboard"
)
flag
.
String
(
CFG_BIND_ADDRESS
,
"
127
.0.0.
1
:8081"
,
"the bind address for the dashboard"
)
}
This diff is collapsed.
Click to expand it.
plugins/graph/parameters.go
+
1
−
1
View file @
83fc6010
...
...
@@ -17,6 +17,6 @@ func init() {
flag
.
String
(
CFG_WEBROOT
,
"IOTAtangle/webroot"
,
"Path to IOTA Tangle Visualiser webroot files"
)
flag
.
String
(
CFG_SOCKET_IO
,
"socket.io-client/dist/socket.io.js"
,
"Path to socket.io.js"
)
flag
.
String
(
CFG_DOMAIN
,
""
,
"Set the domain on which IOTA Tangle Visualiser is served"
)
flag
.
String
(
CFG_BIND_ADDRESS
,
"127.0.0.1:808
3
"
,
"the bind address for the IOTA Tangle Visualizer"
)
flag
.
String
(
CFG_BIND_ADDRESS
,
"127.0.0.1:808
2
"
,
"the bind address for the IOTA Tangle Visualizer"
)
flag
.
String
(
CFG_NETWORK
,
cli
.
AppName
,
"Name of the network shown in IOTA Tangle Visualiser"
)
}
This diff is collapsed.
Click to expand it.
plugins/webapi/parameters.go
+
1
−
1
View file @
83fc6010
...
...
@@ -9,5 +9,5 @@ const (
)
func
init
()
{
flag
.
String
(
BIND_ADDRESS
,
"
0
.0.0.
0
:8080"
,
"the bind address for the web API"
)
flag
.
String
(
BIND_ADDRESS
,
"
127
.0.0.
1
:8080"
,
"the bind address for the web API"
)
}
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment