Skip to content

Latest commit

 

History

History
25 lines (17 loc) · 684 Bytes

README.md

File metadata and controls

25 lines (17 loc) · 684 Bytes

podcastFeed

  • needs curl
  • install ffmpeg (not more needed in amazon?)

Coverage Status

<VirtualHost *>
  ServerName podcast.kungekasen.se

  ## Vhost docroot
  DocumentRoot "/var/www/podcastfeed/web"

  Options -MultiViews

  RewriteEngine On
    # Do not enable rewriting for files that exist
    RewriteCond %{REQUEST_FILENAME} !-f
    RewriteCond %{REQUEST_FILENAME} !-d

    # Rewrite to index.php/URL
  RewriteRule ^(.*)$ /index.php/$1 [PT,L]

</VirtualHost>