xref: /unit/auto/modules/conf (revision 235:467cff8f6def)
1
2# Copyright (C) Igor Sysoev
3# Copyright (C) NGINX, Inc.
4
5
6case "$nxt_module" in
7
8   python)
9       . auto/modules/python
10   ;;
11
12   php)
13       . auto/modules/php
14   ;;
15
16   go)
17       . auto/modules/go
18   ;;
19
20   *)
21       echo
22       echo $0: error: invalid module \"$nxt_module\".
23       echo
24       exit 1
25   ;;
26
27esac
28