Skip to content

Commit 3b26d6a

Browse files
committed
Release 31-3.6.79 - See CHANGELOG.md
1 parent aa6b900 commit 3b26d6a

File tree

2 files changed

+9
-2
lines changed

2 files changed

+9
-2
lines changed

Diff for: CHANGELOG.md

+6
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,9 @@
1+
## 31-3.6.79 2025-02-25 <dave at tiredofit dot ca>
2+
3+
### Changed
4+
- Update nginx configuration to better match upstream
5+
6+
17
## 31-3.6.78 2025-02-25 <dave at tiredofit dot ca>
28

39
### Added

Diff for: install/etc/nginx/sites.available/nextcloud.conf

+3-2
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,7 @@ server {
1111
include mime.types;
1212
types {
1313
text/javascript js mjs;
14+
application/wasm wasm;
1415
}
1516

1617
add_header Referrer-Policy "no-referrer" always;
@@ -59,7 +60,7 @@ server {
5960
include fastcgi_params;
6061
fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;
6162
fastcgi_param PATH_INFO $path_info;
62-
#fastcgi_param HTTPS on;
63+
6364
fastcgi_param modHeadersAvailable true;
6465
fastcgi_param front_controller_active true;
6566
fastcgi_intercept_errors on;
@@ -80,7 +81,7 @@ server {
8081
}
8182
}
8283

83-
location ~ \.woff2?$ {
84+
location ~ \.(otf|woff2?)$ {
8485
try_files $uri /index.php$request_uri;
8586
expires 7d;
8687
access_log off;

0 commit comments

Comments
 (0)