mirror of
https://github.com/YunoHost-Apps/cops_ynh.git
synced 2024-09-03 18:25:57 +02:00
Cleaning
This commit is contained in:
parent
851321dbc7
commit
43057b0eb3
1 changed files with 0 additions and 82 deletions
|
@ -1,82 +0,0 @@
|
|||
DirectoryIndex index.php
|
||||
|
||||
<IfModule mod_xsendfile.c>
|
||||
<Files fetch.php>
|
||||
XSendFile on
|
||||
</Files>
|
||||
</IfModule>
|
||||
|
||||
###########################################
|
||||
# If the notation above don't work, you can try that one
|
||||
# Disclaimer : I'm no apache expert it can be bad security wise :(
|
||||
###########################################
|
||||
#XSendFile On
|
||||
#XSendFileAllowAbove on
|
||||
|
||||
###########################################
|
||||
# On WAMP one user had to add this line in his httpd.conf
|
||||
# None of the above was working
|
||||
###########################################
|
||||
#XSendFilePath <YourCalibrePath>
|
||||
|
||||
###########################################
|
||||
# If you want to use user based configuration with
|
||||
# apache 2.4 + php-fpm enable this
|
||||
# https://github.com/seblucas/cops/issues/213
|
||||
###########################################
|
||||
#SetEnvIf Authorization "(.*)" HTTP_AUTHORIZATION=$1
|
||||
|
||||
<IfModule mod_rewrite.c>
|
||||
RewriteEngine on
|
||||
RewriteRule ^download/(\d*)/(\d*)/.*\.kepub\.epub$ fetch.php?data=$1&db=$2&type=epub [L]
|
||||
RewriteRule ^download/(\d*)/(\d*)/.*\.(.*)$ fetch.php?data=$1&db=$2&type=$3 [L]
|
||||
RewriteRule ^download/(\d*)/.*\.kepub\.epub$ fetch.php?data=$1&type=epub [L]
|
||||
RewriteRule ^download/(\d*)/.*\.(.*)$ fetch.php?data=$1&type=$2 [L]
|
||||
</IfModule>
|
||||
|
||||
<IfModule mod_expires.c>
|
||||
ExpiresActive on
|
||||
|
||||
# Data
|
||||
ExpiresByType text/xml "access plus 0 seconds"
|
||||
ExpiresByType application/xml "access plus 0 seconds"
|
||||
ExpiresByType application/json "access plus 0 seconds"
|
||||
ExpiresByType application/xhtml+xml "access plus 0 seconds"
|
||||
|
||||
# Favicon (cannot be renamed)
|
||||
ExpiresByType image/x-icon "access plus 1 week"
|
||||
|
||||
# Media: images
|
||||
ExpiresByType image/png "access plus 1 month"
|
||||
ExpiresByType image/jpg "access plus 1 month"
|
||||
ExpiresByType image/jpeg "access plus 1 month"
|
||||
|
||||
# Webfonts
|
||||
ExpiresByType font/truetype "access plus 1 month"
|
||||
ExpiresByType font/opentype "access plus 1 month"
|
||||
ExpiresByType application/x-font-woff "access plus 1 month"
|
||||
ExpiresByType image/svg+xml "access plus 1 month"
|
||||
ExpiresByType application/vnd.ms-fontobject "access plus 1 month"
|
||||
|
||||
# CSS and JavaScript
|
||||
ExpiresByType text/css "access plus 1 year"
|
||||
ExpiresByType application/javascript "access plus 1 year"
|
||||
ExpiresByType text/javascript "access plus 1 year"
|
||||
</IfModule>
|
||||
|
||||
###########################################
|
||||
# Uncomment if you wish to protect access with a password
|
||||
###########################################
|
||||
# If your covers and books are not available as soon as you protect it
|
||||
# You can try replacing the FilesMatch directive by this one
|
||||
# <FilesMatch "(index|feed)\.php">
|
||||
# it helps for Sony PRS-TX and Aldiko, but beware fetch.php can be accessed
|
||||
# without authentication (see $config ['cops_fetch_protect'] for a workaround).
|
||||
###########################################
|
||||
#<FilesMatch "\.php$">
|
||||
#AuthUserFile /path/to/file
|
||||
#AuthGroupFile /dev/null
|
||||
#AuthName "Acces securise"
|
||||
#AuthType Basic
|
||||
#Require valid-user
|
||||
#</FilesMatch>
|
Loading…
Reference in a new issue