mirror of
https://github.com/1Panel-dev/1Panel.git
synced 2024-11-10 17:13:30 +08:00
30 lines
404 B
Go
30 lines
404 B
Go
package nginx_conf
|
|
|
|
import (
|
|
"embed"
|
|
_ "embed"
|
|
)
|
|
|
|
//go:embed ssl.conf
|
|
var SSL []byte
|
|
|
|
//go:embed website_default.conf
|
|
var WebsiteDefault []byte
|
|
|
|
//go:embed index.html
|
|
var Index []byte
|
|
|
|
//go:embed index.php
|
|
var IndexPHP []byte
|
|
|
|
//go:embed rewrite/*
|
|
var Rewrites embed.FS
|
|
|
|
//go:embed cache.conf
|
|
var Cache []byte
|
|
|
|
//go:embed proxy.conf
|
|
var Proxy []byte
|
|
|
|
//go:embed proxy_cache.conf
|
|
var ProxyCache []byte
|