Files
dokku/plugins/proxy/functions.go

10 lines
188 B
Go
Raw Normal View History

package proxy
import (
"github.com/dokku/dokku/plugins/config"
)
func getAppProxyType(appName string) string {
return config.GetWithDefault(appName, "DOKKU_APP_PROXY_TYPE", "nginx")
}