summaryrefslogtreecommitdiff
path: root/plugins/server/config.go
diff options
context:
space:
mode:
authorValery Piashchynski <[email protected]>2020-12-21 19:42:23 +0300
committerValery Piashchynski <[email protected]>2020-12-21 19:42:23 +0300
commitee8b4075c0f836d698d1ae505c87c17147de447a (patch)
tree531d980e5bfb94ee39b03952a97e0445f7955409 /plugins/server/config.go
parent0ad45031047bb479e06ce0a0f496c6db9b2641c9 (diff)
Move plugins to the roadrunner-plugins repository
Diffstat (limited to 'plugins/server/config.go')
-rw-r--r--plugins/server/config.go41
1 files changed, 0 insertions, 41 deletions
diff --git a/plugins/server/config.go b/plugins/server/config.go
deleted file mode 100644
index 147ae0f7..00000000
--- a/plugins/server/config.go
+++ /dev/null
@@ -1,41 +0,0 @@
-package server
-
-import (
- "time"
-
- "github.com/spiral/roadrunner/v2/interfaces/server"
-)
-
-// Config config combines factory, pool and cmd configurations.
-type Config struct {
- // Command to run as application.
- Command string
-
- // User to run application under.
- User string
-
- // Group to run application under.
- Group string
-
- // Env represents application environment.
- Env server.Env
-
- // Listen defines connection method and factory to be used to connect to workers:
- // "pipes", "tcp://:6001", "unix://rr.sock"
- // This config section must not change on re-configuration.
- Relay string
-
- // RelayTimeout defines for how long socket factory will be waiting for worker connection. This config section
- // must not change on re-configuration. Defaults to 60s.
- RelayTimeout time.Duration
-}
-
-func (cfg *Config) InitDefaults() {
- if cfg.Relay == "" {
- cfg.Relay = "pipes"
- }
-
- if cfg.RelayTimeout == 0 {
- cfg.RelayTimeout = time.Second * 60
- }
-}