pidgin/old.pidgin.im

Update the version and ChangeLog for 2.14.10
default tip
2022-06-03, Gary Kramlich
af2d360d0740
file isExecutable
Update the version and ChangeLog for 2.14.10
#!/bin/sh
#
# This script runs a local web server sandbox that serves the Pidgin web
# site, so you can test your changes before committing them.
#
# The current version of this script uses nginx. pidgin.im is actually
# served using lighttpd... but that shouldn't matter.
#
# Directions for using this on Ubuntu:
# Note: These directions aren't very good. Feel free to correct/improve.
# apt-get install nginx-light php5-common php5-fpm
# TODO: disable nginx from starting at boot
# /sbin/chkconfig nginx off?
# insserv --remove nginx
# /etc/init.d/nginx stop
# /etc/init.d/php5-fpm start?
# TODO: Configure php5-fpm to start at boot?
MYDIR="$( cd "$( dirname "$0" )" && pwd )"
# Write the absolute path of the document root to a file. See the note
# about this file in nginx.conf for more information.
echo "root "`readlink -f $MYDIR/../htdocs/`";" > $MYDIR/nginx_docroot.conf
/usr/sbin/nginx -c $MYDIR/nginx.conf -p $MYDIR/