]> saetta.ns0.it Git - devrevproxy_go/commitdiff
Added command line args to use for to the proxied service.
authorAndrea Zagli <azagli@libero.it>
Wed, 13 Apr 2022 07:35:34 +0000 (09:35 +0200)
committerAndrea Zagli <azagli@libero.it>
Wed, 13 Apr 2022 07:35:34 +0000 (09:35 +0200)
app.toml.dist
main.go

index 119ac7fbcba9c32d2ffa133c040b3735ed7bb8f2..207427a412cc6cfdc5b2d4e5c482eb80cc6be6c5 100644 (file)
@@ -7,3 +7,4 @@ Address="localhost"
 Port=9090
 Path="/some/app/path"
 Executable="executable_file_name"
+Args=["-a", "first arg", "-b", "second arg"]
\ No newline at end of file
diff --git a/main.go b/main.go
index dd2132ab3c729cdf0345d9c76eb7da8e6c63912a..158991db6f54aff871f58c659adb381ad9f123d3 100644 (file)
--- a/main.go
+++ b/main.go
@@ -32,6 +32,7 @@ type ConfigService struct {
        Port int
        Path string
        Executable string
+       Args []string
 }
 
 type Config struct {
@@ -155,7 +156,7 @@ func startApp() {
        cmd = &exec.Cmd {
                Dir: config.Service.Path,
                Path: config.Service.Path + "/" + config.Service.Executable,
-               Args: []string{config.Service.Path + "/" + config.Service.Executable},
+               Args: append([]string{config.Service.Path + "/" + config.Service.Executable}, config.Service.Args...),
                Stdout: os.Stdout,
                Stderr: os.Stdout,
        }