1
0
Fork 0
mirror of https://github.com/ossrs/srs.git synced 2025-03-09 15:49:59 +00:00

change warn to trace for nginx disabled

This commit is contained in:
winlin 2014-04-06 19:19:13 +08:00
parent d546f815df
commit 5ff1d589f7
2 changed files with 21 additions and 15 deletions

8
trunk/configure vendored
View file

@ -499,18 +499,14 @@ echo ""
echo "configure summary:"
echo " ${SRS_CONFIGURE}"
if [ $SRS_HLS = YES ]; then
echo -e "${GREEN}HLS over nginx is enabled${BLACK}"
echo -e "${GREEN}HLS is enabled${BLACK}"
else
echo -e "${YELLOW}warning: without HLS support${BLACK}"
fi
if [ $SRS_NGINX = YES ]; then
echo -e "${GREEN}Nginx http server is enabled${BLACK}"
else
if [ $SRS_HLS = YES ]; then
echo -e "${YELLOW}warning: HLS without Nginx support${BLACK}"
else
echo -e "${GREEN}note: HLS without Nginx support${BLACK}"
fi
echo -e "${GREEN}note: Nginx http server is disabled${BLACK}"
fi
if [ $SRS_SSL = YES ]; then
echo -e "${GREEN}rtmp complex handshake is enabled${BLACK}"