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
Version 0.6 and 0.6.1 fails with error [FATAL] (manager): open : no such file or directory
For what I could see its still trying to load the certs even where acme_hosts is set and no certs are defined. (tried also defining the certs as an empty string)
Any ideas?
This is the config I used
[logging]
level = "debug" # "debug" | "info" | "warn" | "error"
output = "stdout" # "stdout" | "stderr" | "/path/to/gobetween.log"
[api]
enabled = false # true | false
bind = "0.0.0.0:8080" # "host:port"
cors = false # cross-origin resource sharing
[defaults]
max_connections = 0 # Maximum simultaneous connections to the server
client_idle_timeout = "0" # Client inactivity duration before forced connection drop
backend_idle_timeout = "0" # Backend inactivity duration before forced connection drop
backend_connection_timeout = "0" # Backend connection timeout (ignored in udp)
[acme] # (optional)
challenge = "http" # (optional) http | sni | dns
http_bind = "0.0.0.0:80" # (optional) It is possible to bind to other port, but letsencrypt will send requests to http(80) anyway
cache_dir = "/tmp" # (optional) directory to put acme certificates
[servers]
[servers.sample_443]
protocol = "tls"
bind = "0.0.0.0:443"
[servers.sample_443.discovery]
kind = "static"
static_list = [
"127.0.0.1:3333"
]
[servers.sample_443.tls] # (required) if protocol == "tls"
acme_hosts = [
"mrb.lionix.me"
]
The text was updated successfully, but these errors were encountered:
this is the only thing stdout is showing in debug mode
gobetween v0.6.1
2019-04-09 00:04:11 [INFO ] (manager): Initializing...
2019-04-09 00:04:11 [INFO ] (services): Creating acme
2019-04-09 00:04:11 [FATAL] (manager): open : no such file or directory
I commented on the code in the file server/tcp/server.go so it will not try to load the SSL files and it works (but of course no SSL support is loaded)
Thanks for this piece of work!
Version 0.6 and 0.6.1 fails with error
[FATAL] (manager): open : no such file or directory
For what I could see its still trying to load the certs even where acme_hosts is set and no certs are defined. (tried also defining the certs as an empty string)
Any ideas?
This is the config I used
The text was updated successfully, but these errors were encountered: