mirror of https://github.com/1Panel-dev/1Panel
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
24 lines
309 B
24 lines
309 B
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
|