summaryrefslogtreecommitdiffhomepage
path: root/pkg/rpm/rpmbuild/SOURCES/unit.example.config
blob: 15fb86f1ccd037e8f3fd1706c18372409c6423b5 (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-php/examples/phpinfo-app",
			"index": "index.php"
		},

		"example_python": {
			"type": "python",
			"user": "nobody",
			"processes": 2,
			"path": "/usr/share/doc/unit-python/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"
		}
	}
}