1Panel/cmd/server/nginx_conf/nginx_conf.go

18 lines
218 B
Go
Raw Normal View History

2022-10-28 17:04:57 +08:00
package nginx_conf
import (
_ "embed"
)
//go:embed ssl.conf
var SSL []byte
//go:embed website_default.conf
var WebsiteDefault []byte
2022-11-08 15:42:31 +08:00
//go:embed limit.conf
var Limit []byte
2022-11-21 16:28:51 +08:00
//go:embed index.html
var Index []byte