Skip to content

Commit

Permalink
Merge branch 'master' of github.com:MultiChain/multichain-explorer
Browse files Browse the repository at this point in the history
  • Loading branch information
bitcartel committed Sep 10, 2016
2 parents 9ceb61a + 37185b9 commit 8a3414a
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 4 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -106,8 +106,8 @@ You can store the config file ````chain1.conf```` anywhere you want. When you la

The following changes can be made:

* Change ````port```` to the port number for serving web pages.
* Change ````host```` to ````0.0.0.0```` to serve web pages to anybody.
* Change ````port```` to the port number for serving web pages (make sure your host's firewall allows traffic through that port).
* Change ````host```` to ````0.0.0.0```` to serve web pages to anybody (make sure there is only a single host entry in the config file).
* Change ````dirname```` to match the directory for your blockchain.
* Change ````chain```` to set how the chain should be listed in the explorer.
* Change ````connect-args```` for the location to store the explorer database.
Expand Down
5 changes: 3 additions & 2 deletions chain1.example.conf
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,9 @@
# Port to serve web pages
port 2750

# Who to accept connections from
# host 0.0.0.0 # to accept connections from anybody e.g. production
# Who to accept connections from.
# You can only have one host entry in the config file otherwise the explorer will report an error.
# host 0.0.0.0 # to accept connections from anybody (including localhost) e.g. production
# host localhost # to only accept connections from your local machine e.g. testing
host localhost

Expand Down

0 comments on commit 8a3414a

Please sign in to comment.