WithServerOptions appends server configuration options used during construction.
(opts ...api.ServerOption)
| 156 | |
| 157 | // WithServerOptions appends server configuration options used during construction. |
| 158 | func (b *Builder) WithServerOptions(opts ...api.ServerOption) *Builder { |
| 159 | b.serverOptions = append(b.serverOptions, opts...) |
| 160 | return b |
| 161 | } |
| 162 | |
| 163 | // WithLocalManagementPassword configures a password that is only accepted from localhost management requests. |
| 164 | func (b *Builder) WithLocalManagementPassword(password string) *Builder { |
no outgoing calls
no test coverage detected