Files
nginx-unit/auto/modules/conf
Alexander Borisov 37051b6c15 Added Ruby support.
2018-03-21 16:50:07 +03:00

36 lines
406 B
Plaintext

# 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
;;
*)
echo
echo $0: error: invalid module \"$nxt_module\".
echo
exit 1
;;
esac