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.

.htaccess 2.8KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576
  1. <IfModule mod_headers.c>
  2. <IfModule mod_fcgid.c>
  3. <IfModule mod_setenvif.c>
  4. SetEnvIfNoCase ^Authorization$ "(.+)" XAUTHORIZATION=$1
  5. RequestHeader set XAuthorization %{XAUTHORIZATION}e env=XAUTHORIZATION
  6. </IfModule>
  7. </IfModule>
  8. <IfModule mod_env.c>
  9. # Add security and privacy related headers
  10. Header set X-Content-Type-Options "nosniff"
  11. Header set X-XSS-Protection "1; mode=block"
  12. Header set X-Robots-Tag "none"
  13. Header set X-Frame-Options "SAMEORIGIN"
  14. Header set X-Download-Options "noopen"
  15. Header set X-Permitted-Cross-Domain-Policies "none"
  16. SetEnv modHeadersAvailable true
  17. </IfModule>
  18. # Add cache control for CSS and JS files
  19. <FilesMatch "\.(css|js)$">
  20. Header set Cache-Control "max-age=7200, public"
  21. </FilesMatch>
  22. </IfModule>
  23. <IfModule mod_php5.c>
  24. php_value upload_max_filesize 513M
  25. php_value post_max_size 513M
  26. php_value memory_limit 512M
  27. php_value mbstring.func_overload 0
  28. php_value always_populate_raw_post_data -1
  29. php_value default_charset 'UTF-8'
  30. php_value output_buffering 0
  31. <IfModule mod_env.c>
  32. SetEnv htaccessWorking true
  33. </IfModule>
  34. </IfModule>
  35. <IfModule mod_rewrite.c>
  36. RewriteEngine on
  37. RewriteRule .* - [env=HTTP_AUTHORIZATION:%{HTTP:Authorization}]
  38. RewriteRule ^\.well-known/host-meta /public.php?service=host-meta [QSA,L]
  39. RewriteRule ^\.well-known/host-meta\.json /public.php?service=host-meta-json [QSA,L]
  40. RewriteRule ^\.well-known/carddav /remote.php/dav/ [R=301,L]
  41. RewriteRule ^\.well-known/caldav /remote.php/dav/ [R=301,L]
  42. RewriteRule ^remote/(.*) remote.php [QSA,L]
  43. RewriteRule ^(build|tests|config|lib|3rdparty|templates)/.* - [R=404,L]
  44. RewriteCond %{REQUEST_URI} !^/.well-known/acme-challenge/.*
  45. RewriteRule ^(\.|autotest|occ|issue|indie|db_|console).* - [R=404,L]
  46. # Rewrite rules for `front_controller_active`
  47. Options -MultiViews
  48. RewriteRule ^core/js/oc.js$ index.php/core/js/oc.js [PT,E=PATH_INFO:$1]
  49. RewriteRule ^core/preview.png$ index.php/core/preview.png [PT,E=PATH_INFO:$1]
  50. RewriteCond %{REQUEST_FILENAME} !\.(css|js|svg|gif|png|html|ttf|woff|ico)$
  51. RewriteCond %{REQUEST_FILENAME} !core/img/favicon.ico$
  52. RewriteCond %{REQUEST_FILENAME} !/remote.php
  53. RewriteCond %{REQUEST_FILENAME} !/public.php
  54. RewriteCond %{REQUEST_FILENAME} !/cron.php
  55. RewriteCond %{REQUEST_FILENAME} !/core/ajax/update.php
  56. RewriteCond %{REQUEST_FILENAME} !/status.php
  57. RewriteCond %{REQUEST_FILENAME} !/ocs/v1.php
  58. RewriteCond %{REQUEST_FILENAME} !/ocs/v2.php
  59. RewriteCond %{REQUEST_URI} !^/.well-known/acme-challenge/.*
  60. RewriteRule .* index.php [PT,E=PATH_INFO:$1]
  61. </IfModule>
  62. <IfModule mod_mime.c>
  63. AddType image/svg+xml svg svgz
  64. AddEncoding gzip svgz
  65. </IfModule>
  66. <IfModule mod_dir.c>
  67. DirectoryIndex index.php index.html
  68. </IfModule>
  69. AddDefaultCharset utf-8
  70. Options -Indexes
  71. <IfModule pagespeed_module>
  72. ModPagespeed Off
  73. </IfModule>