tinycm view tools/serv.sh @ rev 8

Tiny edits
author Paul Issott <paul@slitaz.org>
date Sun Apr 22 10:49:23 2012 +0100 (2012-04-22)
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