mirror of
https://github.com/dokku/dokku.git
synced 2025-12-18 21:09:25 +01:00
10 lines
188 B
Go
10 lines
188 B
Go
|
|
package proxy
|
||
|
|
|
||
|
|
import (
|
||
|
|
"github.com/dokku/dokku/plugins/config"
|
||
|
|
)
|
||
|
|
|
||
|
|
func getAppProxyType(appName string) string {
|
||
|
|
return config.GetWithDefault(appName, "DOKKU_APP_PROXY_TYPE", "nginx")
|
||
|
|
}
|