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

# 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
   ;;

   ruby)
       . auto/modules/ruby
   ;;

   nodejs)
       . auto/modules/nodejs
   ;;

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

esac