Skip to content
New issue

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

fix: added missing mime type #520

Merged
merged 2 commits into from Feb 3, 2024
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
2 changes: 1 addition & 1 deletion charts/nextcloud/Chart.yaml
@@ -1,6 +1,6 @@
apiVersion: v2
name: nextcloud
version: 4.5.15
version: 4.5.16
appVersion: 28.0.2
description: A file sharing server that puts the control and security of your own data back into your hands.
keywords:
Expand Down
5 changes: 5 additions & 0 deletions charts/nextcloud/templates/nginx-config.yaml
Expand Up @@ -14,6 +14,11 @@
# could take several months.
#add_header Strict-Transport-Security "max-age=15768000; includeSubDomains; preload;" always;

include mime.types;
types {
application/javascript js mjs;
}

Lerentis marked this conversation as resolved.
Show resolved Hide resolved
# set max upload size
client_max_body_size 10G;
fastcgi_buffers 64 4K;
Expand Down