tinycm view tools/serv.sh @ rev 26

remove the README function: do better
author Christophe Lincoln <pankso@slitaz.org>
date Sun Jan 05 23:18:19 2014 +0000 (2014-01-05)
parents fa494a9879e3
children c4a472d0a45e
line source
1 #!/bin/sh
2 #
3 # Serve TinyCM via Busybox HTTPd
4 #
6 port=8084
8 echo "Starting server on port: $port"
9 echo "URL: http://localhost:$port/"
10 httpd -f -u www:www -p $port -c httpd.conf
12 exit 0