I know this is not a good question, but I can't do a proxypass and I need help.
I want
http://mtrosemedia.tk/subsonic to redirect to mtrosemedia.tk:8089/subsonic
How do I do that with the proxypass command line? I am not understanding where mtrosemedia.tk/subsonic fits into the wiki instructions.
Also, where do I send write ups to see if they will be useful?
I've installed things like Subsonic, Tomcat 7, Java 7, and some other stuff, and felt they would be useful to the community.
I have also installed Red5 but haven't come up with the proper way to create a start up script.
All I have is:
#!/bin/bash
#
# For RedHat and cousins:
#
# chkconfig: 2345 85 85
# description: Red5 flash streaming server
# processname: red5
#
PROG=red5
RED5_HOME=/opt/red5/dist
DAEMON=$RED5_HOME/$PROG.sh
PIDFILE=/var/run/$PROG.pid
# Source function library
. /etc/rc.d/init.d/functions
[ -r /etc/sysconfig/red5 ] && . /etc/sysconfig/red5
RETVAL=0
case “$1″ in
start)
echo -n $”Starting $PROG: ”
cd $RED5_HOME
$DAEMON >/dev/null 2>/dev/null &
RETVAL=$?
if [ $RETVAL -eq 0 ]; then
echo $! > $PIDFILE
touch /var/lock/subsys/$PROG
fi
[ $RETVAL -eq 0 ] && success $”$PROG startup” || failure $”$PROG startup”
echo
;;
stop)
echo -n $”Shutting down $PROG: ”
killproc -p $PIDFILE
RETVAL=$?
echo
[ $RETVAL -eq 0 ] && rm -f /var/lock/subsys/$PROG
;;
restart)
$0 stop
$0 start
;;
status)
status $PROG -p $PIDFILE
RETVAL=$?
;;
*)
echo $”Usage: $0 {start|stop|restart|status}”
RETVAL=1
esac
exit $RETVAL
This file is saved as "red5" in /etc/init.d/red5
However, there is no service found named "red5"
Thanks SME Team