Authentication Is Optional


DavisDA

Recommended Posts

The generic config file says that HTTP authentication isn't required and I'm trying to automate an install and configure it behind the scenes which would require that authentication not be used. 

 

I've tried making the login and password blank.

    "webui" : {        "listen" : "127.0.0.1:8888",        "login" : "",        "password" : "",        "api_key" : "API_KEY"    }
 
I've tried removing the password.
    "webui" : {        "listen" : "127.0.0.1:8888",        "login" : "api",        "api_key" : "API_KEY"    }

 

I've tried removing all credentials.

    "webui" : {        "listen" : "127.0.0.1:8888",        "api_key" : "API_KEY"    }
 
Any suggestions?
 
P.S. The plan is to replace the config post-install to add the authentication back.
Link to comment
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.

Guest
Reply to this topic...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.