diff options
Diffstat (limited to 'pkg/deb/debian/unit.example.config')
-rw-r--r-- | pkg/deb/debian/unit.example.config | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/pkg/deb/debian/unit.example.config b/pkg/deb/debian/unit.example.config index 6dbae2b6..f3126457 100644 --- a/pkg/deb/debian/unit.example.config +++ b/pkg/deb/debian/unit.example.config @@ -20,6 +20,14 @@ "type": "go",
"user": "nobody",
"executable": "/tmp/go-app"
+ },
+
+ "example_perl": {
+ "type": "perl",
+ "user": "nobody",
+ "processes": 1,
+ "working_directory": "/usr/share/doc/unit-perl/examples/perl-app",
+ "script": "/usr/share/doc/unit-perl/examples/perl-app/index.pl"
}
},
@@ -34,6 +42,10 @@ "*:8500": {
"application": "example_go"
+ },
+
+ "*:8600": {
+ "application": "example_perl"
}
}
}
|