summaryrefslogtreecommitdiffhomepage
path: root/test/unit/applications/lang/php.py
blob: 18c126d59e7706359f94a0ededabec77e83fa121 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
from unit.applications.proto import TestApplicationProto


class TestApplicationPHP(TestApplicationProto):
    def load(self, script, name='index.php'):
        script_path = self.current_dir + '/php/' + script

        self.conf(
            {
                "listeners": {"*:7080": {"pass": "applications/" + script}},
                "applications": {
                    script: {
                        "type": "php",
                        "processes": {"spare": 0},
                        "root": script_path,
                        "working_directory": script_path,
                        "index": name,
                    }
                },
            }
        )