mirror of
https://github.com/nextcloud/server.git
synced 2026-06-11 09:42:09 -04:00
Fix module name for PHP8+
This commit is contained in:
parent
2303eebcc8
commit
3ee82e4405
1 changed files with 3 additions and 1 deletions
|
|
@ -53,6 +53,7 @@
|
|||
</FilesMatch>
|
||||
</IfModule>
|
||||
|
||||
# PHP 7.x
|
||||
<IfModule mod_php7.c>
|
||||
php_value mbstring.func_overload 0
|
||||
php_value default_charset 'UTF-8'
|
||||
|
|
@ -62,7 +63,8 @@
|
|||
</IfModule>
|
||||
</IfModule>
|
||||
|
||||
<IfModule mod_php8.c>
|
||||
# PHP 8+
|
||||
<IfModule mod_php.c>
|
||||
php_value mbstring.func_overload 0
|
||||
php_value default_charset 'UTF-8'
|
||||
php_value output_buffering 0
|
||||
|
|
|
|||
Loading…
Reference in a new issue