mirror of
https://github.com/ipfs/kubo.git
synced 2026-02-27 13:27:50 +08:00
12 lines
279 B
Go
12 lines
279 B
Go
package config
|
|
|
|
// Gateway contains options for the HTTP gateway server.
|
|
type Gateway struct {
|
|
HTTPHeaders map[string][]string // HTTP headers to return with the gateway
|
|
RootRedirect string
|
|
Writable bool
|
|
PathPrefixes []string
|
|
APICommands []string
|
|
NoFetch bool
|
|
}
|