Never been to TextSnippets before?

Snippets is a public source code repository. Easily build up your personal collection of code snippets, categorize them with tags / keywords, and share them with the world (or not, you can keep them private!)

A shell script for setting up the initial lighttpd setup for you (See related posts)

Creates directories and gets the various files for you.

#!/bin/sh
# Setup Lighttpd
#
# Copyright (c) 2006 Jacques Marneweck
#
# Permission is hereby granted, free of charge, to any person obtaining a
# copy of this software and associated documentation files (the
# "Software"), to deal in the Software without restriction, including
# without limitation the rights to use, copy, modify, merge, publish,
# distribute, sublicense, and/or sell copies of the Software, and to
# permit persons to whom the Software is furnished to do so, subject to
# the following conditions:
#
# The above copyright notice and this permission notice shall be included
# in all copies or substantial portions of the Software.
#
# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
# OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
# MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
# IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
# CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
# TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
# SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
#
# $Id: setup-lighttpd 21 2006-11-24 21:06:17Z jacques $

/bin/mkdir ~/var/
/bin/mkdir ~/var/log/
/bin/mkdir ~/var/run/
/bin/mkdir ~/etc/rc.d/
/bin/mkdir ~/etc/lighttpd/
/bin/mkdir ~/etc/lighttpd/vhosts.d/

cd ~/etc/lighttpd/
/usr/local/bin/curl -o lighttpd.conf "http://help.textdrive.com/index.php?pg=file&from=2&id=77"
cd ~/etc/lighttpd/vhosts.d/
/usr/local/bin/curl -o APPNAME.conf "http://help.textdrive.com/index.php?pg=file&from=2&id=82"
cd ~/etc/rc.d/
/usr/local/bin/curl -o lighttpd.sh "http://help.textdrive.com/index.php?pg=file&from=2&id=79"
/usr/local/bin/curl -o rails.sh "http://help.textdrive.com/index.php?pg=file&from=2&id=80"

/bin/chmod 755 lighttpd.sh
/bin/chmod 755 rails.sh

touch ~/var/log/lighttpd.access.log
touch ~/var/log/lighttpd.error.log

You need to create an account or log in to post comments to this site.


Related Posts