mirror of
https://github.com/1Panel-dev/1Panel.git
synced 2025-01-19 16:29:17 +08:00
15 lines
184 B
Go
15 lines
184 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
|