68 lines
2.9 KiB
Plaintext
68 lines
2.9 KiB
Plaintext
|
|
root /var/www/html/nextcloud;
|
||
|
|
|
||
|
|
# Prevent nginx HTTP Server Detection
|
||
|
|
server_tokens off;
|
||
|
|
|
||
|
|
# HSTS settings
|
||
|
|
# WARNING: Only add the preload option once you read about
|
||
|
|
# the consequences in https://hstspreload.org/. This option
|
||
|
|
# will add the domain to a hardcoded list that is shipped
|
||
|
|
# in all major browsers and getting removed from this list
|
||
|
|
# could take several months.
|
||
|
|
#add_header Strict-Transport-Security "max-age=31536000; includeSubDomains; preload" always;
|
||
|
|
|
||
|
|
# set max upload size and increase upload timeout:
|
||
|
|
client_max_body_size 10G;
|
||
|
|
client_body_timeout 300s;
|
||
|
|
fastcgi_buffers 64 4K;
|
||
|
|
|
||
|
|
# Enable gzip but do not remove ETag headers
|
||
|
|
gzip on;
|
||
|
|
gzip_vary on;
|
||
|
|
gzip_comp_level 4;
|
||
|
|
gzip_min_length 256;
|
||
|
|
gzip_proxied expired no-cache no-store private no_last_modified no_etag auth;
|
||
|
|
gzip_types application/atom+xml application/javascript application/json application/ld+json application/manifest+json application/rss+xml application/vnd.geo+json application/vnd.ms-fontobject application/x-font-ttf application/x-web-app-manifest+json application/xhtml+xml application/xml font/opentype image/bmp image/svg+xml image/x-icon text/cache-manifest text/css text/plain text/vcard text/vnd.rim.location.xloc text/vtt text/x-component text/x-cross-domain-policy;
|
||
|
|
|
||
|
|
# Pagespeed is not supported by Nextcloud, so if your server is built
|
||
|
|
# with the `ngx_pagespeed` module, uncomment this line to disable it.
|
||
|
|
#pagespeed off;
|
||
|
|
|
||
|
|
# The settings allows you to optimize the HTTP2 bandwidth.
|
||
|
|
# See https://blog.cloudflare.com/delivering-http-2-upload-speed-improvements/
|
||
|
|
# for tuning hints
|
||
|
|
client_body_buffer_size 512k;
|
||
|
|
|
||
|
|
# HTTP response headers borrowed from Nextcloud `.htaccess`
|
||
|
|
add_header Referrer-Policy "no-referrer" always;
|
||
|
|
add_header X-Content-Type-Options "nosniff" always;
|
||
|
|
add_header X-Frame-Options "SAMEORIGIN" always;
|
||
|
|
add_header X-Permitted-Cross-Domain-Policies "none" always;
|
||
|
|
add_header X-Robots-Tag "none" always;
|
||
|
|
|
||
|
|
# Remove X-Powered-By, which is an information leak
|
||
|
|
fastcgi_hide_header X-Powered-By;
|
||
|
|
|
||
|
|
# Set .mjs and .wasm MIME types
|
||
|
|
# Either include it in the default mime.types list
|
||
|
|
# and include that list explicitly or add the file extension
|
||
|
|
# only for Nextcloud like below:
|
||
|
|
include mime.types;
|
||
|
|
types {
|
||
|
|
text/javascript mjs;
|
||
|
|
application/wasm wasm;
|
||
|
|
}
|
||
|
|
|
||
|
|
# Specify how to handle directories -- specifying `/index.php$request_uri`
|
||
|
|
# here as the fallback means that Nginx always exhibits the desired behaviour
|
||
|
|
# when a client requests a path that corresponds to a directory that exists
|
||
|
|
# on the server. In particular, if that directory contains an index.php file,
|
||
|
|
# that file is correctly served; if it doesn't, then the request is passed to
|
||
|
|
# the front-end controller. This consistent behaviour means that we don't need
|
||
|
|
# to specify custom rules for certain paths (e.g. images and other assets,
|
||
|
|
# `/updater`, `/ocs-provider`), and thus
|
||
|
|
# `try_files $uri $uri/ /index.php$request_uri`
|
||
|
|
# always provides the desired behaviour.
|
||
|
|
index index.php index.html /index.php$request_uri;
|
||
|
|
|