mirror of
https://gitee.com/fit2cloud-feizhiyun/1Panel.git
synced 2024-12-02 11:57:56 +08:00
24 lines
309 B
Go
24 lines
309 B
Go
package nginx_conf
|
|
|
|
import (
|
|
_ "embed"
|
|
)
|
|
|
|
//go:embed ssl.conf
|
|
var SSL []byte
|
|
|
|
//go:embed http2https.conf
|
|
var HTTPS []byte
|
|
|
|
//go:embed website_default.conf
|
|
var WebsiteDefault []byte
|
|
|
|
//go:embed limit.conf
|
|
var Limit []byte
|
|
|
|
//go:embed index.html
|
|
var Index []byte
|
|
|
|
//go:embed http_per.conf
|
|
var HttpPer []byte
|