/etc/apache2/sites-available/mythexport.conf is in mythexport 2.2.4-0ubuntu2.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 | <Directory "/var/www/mythexport">
AllowOverride None
Options +ExecCGI -MultiViews +FollowSymLinks
Order allow,deny
Allow from all
<Files *.cgi>
SetHandler cgi-script
Options +ExecCGI
</Files>
DirectoryIndex file.cgi
# Turned off as we are now hosting up more than just a RSS feed
#RewriteEngine on
#RewriteRule ^([A-Za-z0-9-_]+)/?$ mythexportRSS.cgi?podcastName=$1 [L]
</Directory>
<Directory "/var/www/.mythtv">
AllowOverride None
Deny from all
</Directory>
|