Skip to the Main Content

Note:These pages make extensive use of the latest XHTML and CSS Standards. They ought to look great in any standards-compliant modern browser. Unfortunately, they will probably look horrible in older browsers, like Netscape 4.x and IE 4.x. Moreover, many posts use MathML, which is, currently only supported in Mozilla. My best suggestion (and you will thank me when surfing an ever-increasing number of sites on the web which have been crafted to use the new standards) is to upgrade to the latest version of your browser. If that's not possible, consider moving to the Standards-compliant and open-source Mozilla browser.

April 1, 2003

Streaming Servitude

In addition to being my desktop, Golem is my mailserver/webserver/… and my QuicktimeStreamingServer. This poses a problem because some people have their Quicktime client software configured to use HTTP/Port80 instead of RTSP/Port554. So, when they click “play” on one of the movies, the request is received by Apache instead of QTSS, and they get a 404. It doesn’t matter what garish warning I put on the web page, my Apache error logs show that some people can’t or won’t change their settings.

A few days ago, I realized that this was yet another job for mod_rewrite!

RewriteEngine On
RewriteBase /moviedir/
RewriteCond %{HTTP_USER_AGENT} QuickTime|QTS
RewriteRule ^(.*)$ http://golem.ph.utexas.edu:554/moviedir/$1 [L,R]

In other news, OpenSSH 3.6 is out.

And I decided to do the pure-CSS button thingie for my RSS feeds because the sidebar of my blog just didn’t have enough buttons.

P.S.: In case you couldn’t tell, it’s a spoof.

Posted by distler at April 1, 2003 10:14 AM

TrackBack URL for this Entry:   https://golem.ph.utexas.edu/cgi-bin/MT-3.0/dxy-tb.fcgi/132

0 Comments & 0 Trackbacks

Post a New Comment