mirror of
https://github.com/ipfs/kubo.git
synced 2026-02-26 04:47:45 +08:00
This commit fixes + improves CORS support License: MIT Signed-off-by: Juan Batiz-Benet <juan@benet.ai>
9 lines
214 B
Go
9 lines
214 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
|
|
}
|