summaryrefslogtreecommitdiffhomepage
path: root/pkg/deb/debian/unit.example.config
blob: 6dbae2b631d44009135d3afcb9e1e5b8c42c890d (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
{
	"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": "go",
			"user": "nobody",
			"executable": "/tmp/go-app"
		}
	},

	"listeners": {
		"*:8300": {
			"application": "example_php"
		},

		"*:8400": {
			"application": "example_python"
		},

		"*:8500": {
			"application": "example_go"
		}
	}
}