tinycm view tools/serv.sh @ rev 40

Added tag 1.0 for changeset eea2e04b7436
author Christophe Lincoln <pankso@slitaz.org>
date Wed Jan 08 00:02:16 2014 +0100 (2014-01-08)
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