Files
nginx-unit/pkg/deb/debian/unit.example.config
Valentin Bartenev 029c1a9f50 Renamed "go" application type to "external".
There's nothing specific to Go language.  This type of application object can
be used to run any external application that utilizes libunit API.
2018-10-09 17:53:31 +03:00

52 lines
896 B
Plaintext

{
"applications": {
"example_php": {
"type": "php",
"user": "nobody",
"processes": 2,
"root": "/usr/share/doc/unit/examples/php-app",
"index": "index.php"
},
"example_python": {
"type": "python",
"user": "nobody",
"processes": 2,
"path": "/usr/share/doc/unit/examples/python-app",
"module": "wsgi"
},
"example_go": {
"type": "external",
"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"
}
},
"listeners": {
"*:8300": {
"application": "example_php"
},
"*:8400": {
"application": "example_python"
},
"*:8500": {
"application": "example_go"
},
"*:8600": {
"application": "example_perl"
}
}
}