Calibre OPDS (and HTML) PHP Server : web-based light alternative to Calibre content server / Calibre2OPDS to serve ebooks (epub, mobi, pdf, ...) http://blog.slucas.fr/en/oss/calibre-opds-php-server
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

20 lines
914B

  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <configuration>
  3. <system.webServer>
  4. <staticContent>
  5. <clientCache cacheControlMode="UseMaxAge" cacheControlMaxAge="14.00:00:00" />
  6. </staticContent>
  7. <rewrite>
  8. <rules>
  9. <rule name="Download with db" stopProcessing="true">
  10. <match url="download/(\d*)/(\d*)/.*\.(.*?)$" />
  11. <action type="Rewrite" url="fetch.php?data={R:1}&amp;db={R:2}&amp;type={R:3}" appendQueryString="false" />
  12. </rule>
  13. <rule name="Download without db" stopProcessing="true">
  14. <match url="download/(\d*)/.*\.(.*?)$" />
  15. <action type="Rewrite" url="fetch.php?data={R:1}&amp;type={R:2}" appendQueryString="false" />
  16. </rule>
  17. </rules>
  18. </rewrite>
  19. </system.webServer>
  20. </configuration>