8 lines
91 B
Bash
8 lines
91 B
Bash
|
#!/bin/sh
|
||
|
|
||
|
# start nginx
|
||
|
nginx -c /etc/nginx/nginx.conf
|
||
|
|
||
|
echo "args = $@"
|
||
|
|
||
|
/app/server "$@"
|