> I'm trying to get Apache to serve *.pls files the right way instead of
> just serving them as plain text.
> I've added the following line to the httpd.conf file:
> AddType   audio/x-scpls	.pls
>
> And this line to /etc/mime.types
> audio/mpegurl   pls
>
>
> I've restarted Apache and the *.pls files still get served as
> text/plain. Can someone please steer me in the right direction here?
> How can I get Apache to serve the file with the right mime-type instead
> of just spitting out the text that is in the *.pls file?
>
> Thanks

You might need to add ExecCGI as one of your Options within a directory
section if the scripts exist outside of the cgi-bin directory.

also I added the following line (which should work instead of the AddType
under the mod_mime module)

 AddHandler cgi-script .pl

Hope that helps

LB