.htaccess 4.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121
  1. <IfModule mod_headers.c>
  2. <IfModule mod_setenvif.c>
  3. <IfModule mod_fcgid.c>
  4. SetEnvIfNoCase ^Authorization$ "(.+)" XAUTHORIZATION=$1
  5. RequestHeader set XAuthorization %{XAUTHORIZATION}e env=XAUTHORIZATION
  6. </IfModule>
  7. <IfModule mod_proxy_fcgi.c>
  8. SetEnvIfNoCase Authorization "(.+)" HTTP_AUTHORIZATION=$1
  9. </IfModule>
  10. <IfModule mod_lsapi.c>
  11. SetEnvIfNoCase ^Authorization$ "(.+)" XAUTHORIZATION=$1
  12. RequestHeader set XAuthorization %{XAUTHORIZATION}e env=XAUTHORIZATION
  13. </IfModule>
  14. </IfModule>
  15. <IfModule mod_env.c>
  16. # Add security and privacy related headers
  17. # Avoid doubled headers by unsetting headers in "onsuccess" table,
  18. # then add headers to "always" table: https://github.com/nextcloud/server/pull/19002
  19. Header onsuccess unset Referrer-Policy
  20. Header always set Referrer-Policy "no-referrer"
  21. Header onsuccess unset X-Content-Type-Options
  22. Header always set X-Content-Type-Options "nosniff"
  23. Header onsuccess unset X-Frame-Options
  24. Header always set X-Frame-Options "SAMEORIGIN"
  25. Header onsuccess unset X-Permitted-Cross-Domain-Policies
  26. Header always set X-Permitted-Cross-Domain-Policies "none"
  27. Header onsuccess unset X-Robots-Tag
  28. Header always set X-Robots-Tag "noindex, nofollow"
  29. Header onsuccess unset X-XSS-Protection
  30. Header always set X-XSS-Protection "1; mode=block"
  31. SetEnv modHeadersAvailable true
  32. </IfModule>
  33. # Add cache control for static resources
  34. <FilesMatch "\.(css|js|svg|gif|png|jpg|ico|wasm|tflite)$">
  35. <If "%{QUERY_STRING} =~ /(^|&)v=/">
  36. Header set Cache-Control "max-age=15778463, immutable"
  37. </If>
  38. <Else>
  39. Header set Cache-Control "max-age=15778463"
  40. </Else>
  41. </FilesMatch>
  42. # Let browsers cache WOFF files for a week
  43. <FilesMatch "\.woff2?$">
  44. Header set Cache-Control "max-age=604800"
  45. </FilesMatch>
  46. </IfModule>
  47. # PHP 7.x
  48. <IfModule mod_php7.c>
  49. php_value mbstring.func_overload 0
  50. php_value default_charset 'UTF-8'
  51. php_value output_buffering 0
  52. <IfModule mod_env.c>
  53. SetEnv htaccessWorking true
  54. </IfModule>
  55. </IfModule>
  56. # PHP 8+
  57. <IfModule mod_php.c>
  58. php_value mbstring.func_overload 0
  59. php_value default_charset 'UTF-8'
  60. php_value output_buffering 0
  61. <IfModule mod_env.c>
  62. SetEnv htaccessWorking true
  63. </IfModule>
  64. </IfModule>
  65. <IfModule mod_mime.c>
  66. AddType image/svg+xml svg svgz
  67. AddType application/wasm wasm
  68. AddEncoding gzip svgz
  69. </IfModule>
  70. <IfModule mod_dir.c>
  71. DirectoryIndex index.php index.html
  72. </IfModule>
  73. <IfModule pagespeed_module>
  74. ModPagespeed Off
  75. </IfModule>
  76. <IfModule mod_rewrite.c>
  77. RewriteEngine on
  78. RewriteCond %{HTTP_USER_AGENT} DavClnt
  79. RewriteRule ^$ /remote.php/webdav/ [L,R=302]
  80. RewriteRule .* - [env=HTTP_AUTHORIZATION:%{HTTP:Authorization}]
  81. RewriteRule ^\.well-known/carddav /remote.php/dav/ [R=301,L]
  82. RewriteRule ^\.well-known/caldav /remote.php/dav/ [R=301,L]
  83. RewriteRule ^remote/(.*) remote.php [QSA,L]
  84. RewriteRule ^(?:build|tests|config|lib|3rdparty|templates)/.* - [R=404,L]
  85. RewriteRule ^\.well-known/(?!acme-challenge|pki-validation) /index.php [QSA,L]
  86. RewriteRule ^ocm-provider/?$ index.php [QSA,L]
  87. RewriteRule ^(?:\.(?!well-known)|autotest|occ|issue|indie|db_|console).* - [R=404,L]
  88. </IfModule>
  89. # Clients like xDavv5 on Android, or Cyberduck, use chunked requests.
  90. # When FastCGI or FPM is used with apache, requests arrive to Nextcloud without any content.
  91. # This leads to the creation of empty files.
  92. # The following directive will force the problematic requests to be buffered before being forwarded to Nextcloud.
  93. # This way, the "Transfer-Encoding" header is removed, the "Content-Length" header is set, and the request content is proxied to Nextcloud.
  94. # Here are more information about the issue:
  95. # - https://docs.cyberduck.io/mountainduck/issues/fastcgi/
  96. # - https://docs.nextcloud.com/server/latest/admin_manual/issues/general_troubleshooting.html#troubleshooting-webdav
  97. <IfModule setenvif.c>
  98. <Location "/remote.php">
  99. SetEnvIf Transfer-Encoding "chunked" proxy-sendcl=1
  100. </Location>
  101. </IfModule>
  102. AddDefaultCharset utf-8
  103. Options -Indexes