We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Getting this in the Security & setup warnings screen :
'Could not check for otf loading support. Please check manually if your webserver serves .otf files. ' According to this : https://docs.nextcloud.com/server/29/admin_manual/installation/nginx.html
.otf
There should be both otf and woff2 in nginx default conf
This project config : location ~ \.woff2?$ { try_files $uri /index.php$uri$is_args$args; expires 7d; access_log off; } From the docs : location ~ \.(otf|woff2?)$ { try_files $uri /index.php$request_uri; expires 7d; # Cache-Control policy borrowed from.htaccess access_log off; # Optional: Don't log access to assets }
location ~ \.woff2?$ { try_files $uri /index.php$uri$is_args$args; expires 7d; access_log off; }
location ~ \.(otf|woff2?)$ { try_files $uri /index.php$request_uri; expires 7d; # Cache-Control policy borrowed from
access_log off; # Optional: Don't log access to assets }
Note the missing otf
The text was updated successfully, but these errors were encountered:
Ref : nextcloud/server#47983
Sorry, something went wrong.
Thanks for reporting. Should be fixed now. Ref: 0ed3427 (version-28), 5366528 (version-29), f5bf94fbaf8685c88c02eed9780bdf96bf552248 (master)
Thank you, works fine now.
No branches or pull requests
Getting this in the Security & setup warnings screen :
'Could not check for otf loading support. Please check manually if your webserver serves
.otf
files.'
According to this :
https://docs.nextcloud.com/server/29/admin_manual/installation/nginx.html
There should be both otf and woff2 in nginx default conf
This project config :
location ~ \.woff2?$ { try_files $uri /index.php$uri$is_args$args; expires 7d; access_log off; }
From the docs :
location ~ \.(otf|woff2?)$ { try_files $uri /index.php$request_uri; expires 7d; # Cache-Control policy borrowed from
.htaccessaccess_log off; # Optional: Don't log access to assets }
Note the missing otf
The text was updated successfully, but these errors were encountered: