mirror of
https://github.com/ipfs/kubo.git
synced 2026-03-02 23:08:07 +08:00
Some checks are pending
CodeQL / codeql (push) Waiting to run
Docker Build / docker-build (push) Waiting to run
Gateway Conformance / gateway-conformance (push) Waiting to run
Gateway Conformance / gateway-conformance-libp2p-experiment (push) Waiting to run
Go Build / go-build (push) Waiting to run
Go Check / go-check (push) Waiting to run
Go Lint / go-lint (push) Waiting to run
Go Test / go-test (push) Waiting to run
Interop / interop-prep (push) Waiting to run
Interop / helia-interop (push) Blocked by required conditions
Interop / ipfs-webui (push) Blocked by required conditions
Sharness / sharness-test (push) Waiting to run
* fix(autotls): renewal and AutoTLS.ShortAddrs updates to p2p-forge/client with fix from https://github.com/ipshipyard/p2p-forge/pull/42 we also add AutoTLS.ShortAddrs flag and enable it by default to benefit from shorter addrs discusses in https://github.com/ipshipyard/p2p-forge/pull/40 * test: fix flaky NewRandPort reducing chance of bind: address already in use
39 lines
1.6 KiB
Go
39 lines
1.6 KiB
Go
package config
|
|
|
|
import p2pforge "github.com/ipshipyard/p2p-forge/client"
|
|
|
|
// AutoTLS includes optional configuration of p2p-forge client of service
|
|
// for obtaining a domain and TLS certificate to improve connectivity for web
|
|
// browser clients. More: https://github.com/ipshipyard/p2p-forge#readme
|
|
type AutoTLS struct {
|
|
// Enables the p2p-forge feature and all related features.
|
|
Enabled Flag `json:",omitempty"`
|
|
|
|
// Optional, controls if Kubo should add /tls/sni/.../ws listener to every /tcp port if no explicit /ws is defined in Addresses.Swarm
|
|
AutoWSS Flag `json:",omitempty"`
|
|
|
|
// Optional override of the parent domain that will be used
|
|
DomainSuffix *OptionalString `json:",omitempty"`
|
|
|
|
// Optional override of HTTP API that acts as ACME DNS-01 Challenge broker
|
|
RegistrationEndpoint *OptionalString `json:",omitempty"`
|
|
|
|
// Optional Authorization token, used with private/test instances of p2p-forge
|
|
RegistrationToken *OptionalString `json:",omitempty"`
|
|
|
|
// Optional override of CA ACME API used by p2p-forge system
|
|
CAEndpoint *OptionalString `json:",omitempty"`
|
|
|
|
// Optional, controls if features like AutoWSS should generate shorter /dnsX instead of /ipX/../sni/..
|
|
ShortAddrs Flag `json:",omitempty"`
|
|
}
|
|
|
|
const (
|
|
DefaultAutoTLSEnabled = false // experimental, opt-in for now (https://github.com/ipfs/kubo/pull/10521)
|
|
DefaultDomainSuffix = p2pforge.DefaultForgeDomain
|
|
DefaultRegistrationEndpoint = p2pforge.DefaultForgeEndpoint
|
|
DefaultCAEndpoint = p2pforge.DefaultCAEndpoint
|
|
DefaultAutoWSS = true // requires AutoTLS.Enabled
|
|
DefaultAutoTLSShortAddrs = true // requires AutoTLS.Enabled
|
|
)
|