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
// Config is the main configuration struct of shushtar. It contains all config
29
40
// items of its enveloping subservers, each prefixed with their daemon's short
30
41
// name.
31
42
typeConfigstruct {
32
-
HTTPSListenstring`long:"httpslisten" description:"host:port to listen for incoming HTTP/2 connections on"`
33
-
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"`
34
-
UIPasswordFilestring`long:"uipassword_file" description:"same as uipassword but instead of passing in the value directly, read the password from the specified file"`
35
-
UIPasswordEnvstring`long:"uipassword_env" description:"same as uipassword but instead of passing in the value directly, read the password from the specified environment variable"`
HTTPSListenstring`long:"httpslisten" description:"host:port to listen for incoming HTTP/2 connections on"`
44
+
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"`
45
+
UIPasswordFilestring`long:"uipassword_file" description:"same as uipassword but instead of passing in the value directly, read the password from the specified file"`
46
+
UIPasswordEnvstring`long:"uipassword_env" description:"same as uipassword but instead of passing in the value directly, read the password from the specified environment variable"`
47
+
48
+
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"`
49
+
LetsEncryptHoststring`long:"letsencrypthost" description:"the host name to create a Let's Encrypt certificate for'"`
50
+
LetsEncryptDirstring`long:"letsencryptdir" description:"the directory where the Let's Encrypt library will store its key and certificate"`
0 commit comments