mirror of
https://github.com/1Panel-dev/1Panel.git
synced 2024-11-16 04:24:57 +08:00
46 lines
841 B
Go
46 lines
841 B
Go
|
package components
|
||
|
|
||
|
type Config struct {
|
||
|
*Block
|
||
|
FilePath string
|
||
|
}
|
||
|
|
||
|
func (c *Config) FindServers() []*Server {
|
||
|
var servers []*Server
|
||
|
directives := c.Block.FindDirectives("server")
|
||
|
for _, directive := range directives {
|
||
|
servers = append(servers, directive.(*Server))
|
||
|
}
|
||
|
return servers
|
||
|
}
|
||
|
|
||
|
func (c *Config) FindHttp() *Http {
|
||
|
var http *Http
|
||
|
directives := c.Block.FindDirectives("http")
|
||
|
if len(directives) > 0 {
|
||
|
http = directives[0].(*Http)
|
||
|
}
|
||
|
|
||
|
return http
|
||
|
}
|
||
|
|
||
|
var repeatKeys = map[string]struct {
|
||
|
}{
|
||
|
"limit_conn": {},
|
||
|
"limit_conn_zone": {},
|
||
|
"set": {},
|
||
|
"if": {},
|
||
|
"proxy_set_header": {},
|
||
|
"location": {},
|
||
|
"include": {},
|
||
|
"sub_filter": {},
|
||
|
"add_header": {},
|
||
|
}
|
||
|
|
||
|
func IsRepeatKey(key string) bool {
|
||
|
if _, ok := repeatKeys[key]; ok {
|
||
|
return true
|
||
|
}
|
||
|
return false
|
||
|
}
|