You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: config.go
+15-8Lines changed: 15 additions & 8 deletions
Original file line number
Diff line number
Diff line change
@@ -143,9 +143,10 @@ type Config struct {
143
143
HTTPListenstring`long:"insecure-httplisten" description:"The host:port to listen on with TLS disabled. This is dangerous to enable as credentials will be submitted without encryption. Should only be used in combination with Tor hidden services or other external encryption."`
144
144
EnableRESTbool`long:"enablerest" description:"Also allow REST requests to be made to the main HTTP(s) port(s) configured above."`
145
145
RestCORS []string`long:"restcors" description:"Add an ip:port/hostname to allow cross origin access from. To allow all origins, set as \"*\"."`
146
-
UIPasswordstring`long:"uipassword" description:"The password that must be entered when using the loop UI. use a strong password to protect your node from unauthorized access through the web UI."`
146
+
UIPasswordstring`long:"uipassword" description:"The password that must be entered when using the UI. Use a strong password to protect your node from unauthorized access through the web UI."`
147
147
UIPasswordFilestring`long:"uipassword_file" description:"Same as uipassword but instead of passing in the value directly, read the password from the specified file."`
148
148
UIPasswordEnvstring`long:"uipassword_env" description:"Same as uipassword but instead of passing in the value directly, read the password from the specified environment variable."`
149
+
DisableUIbool`long:"disableui" description:"If set to true, no web UI will be served and so the uipassword will also not need to be set."`
149
150
150
151
LetsEncryptbool`long:"letsencrypt" description:"Use Let's Encrypt to create a TLS certificate for the UI instead of using lnd's TLS certificate. Port 80 must be free to listen on and must be reachable from the internet for this to work."`
151
152
LetsEncryptHoststring`long:"letsencrypthost" description:"The host name to create a Let's Encrypt certificate for."`
0 commit comments