deenario
deenario

Reputation: 11

Hyperledger Explorer Login page Disabling

In the latest version of hyperledger explorer. They have added a login page. enter image description here I want to remove that and keep my explorer public to the people. There is an option in

blockchain-explorer/app/platform/fabric/config.json

The document says that there is an option enableAuthentication that you can make false and that will remove the login page but Even after adding that option nothing happens. I am still getting the login page.

Upvotes: 0

Views: 362

Answers (1)

nekia
nekia

Reputation: 64

You need to configure the option in your connection profile (e.g. here).

{
    name: "first-network",
    version: "1.0.0",
    license: "Apache-2.0",
    client: {
        tlsEnable: true,
        enableAuthentication: false,

Upvotes: 0

Related Questions