summaryrefslogtreecommitdiffhomepage
path: root/auto/modules/conf
blob: df77309e5b2037a4bb249d3162bddd0779608c4c (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

# Copyright (C) Igor Sysoev
# Copyright (C) NGINX, Inc.


case "$nxt_module" in

   python)
       . auto/modules/python
   ;;

   php)
       . auto/modules/php
   ;;

   go)
       . auto/modules/go
   ;;

   perl)
       . auto/modules/perl
   ;;

   *)
       echo
       echo $0: error: invalid module \"$nxt_module\".
       echo
       exit 1
   ;;

esac