nextcloud/rootfs/etc/confd/templates/nextcloud.conf.tmpl

136 lines
5.0 KiB
Cheetah
Raw Normal View History

2018-01-30 10:49:45 +00:00
error_log /dev/stdout info;
access_log /dev/stdout;
2017-06-15 09:08:50 +00:00
upstream php {
server 127.0.0.1:9000;
}
2024-11-01 10:36:37 +00:00
map $arg_v $asset_immutable {
"" "";
default ", immutable";
}
2017-06-15 09:08:50 +00:00
server {
2022-11-13 09:30:14 +00:00
listen [::]:8080;
2021-08-22 14:56:16 +00:00
listen 8080;
2017-06-15 09:08:50 +00:00
server_name {{getenv "DOMAIN"}};
add_header X-Content-Type-Options nosniff;
add_header X-XSS-Protection "1; mode=block";
add_header X-Robots-Tag none;
add_header X-Download-Options noopen;
add_header X-Permitted-Cross-Domain-Policies none;
2019-03-17 17:00:43 +00:00
add_header Referrer-Policy no-referrer;
2019-10-08 12:29:57 +00:00
add_header X-Frame-Options "SAMEORIGIN" always;
2019-03-17 17:00:43 +00:00
2024-11-01 10:36:37 +00:00
include mime.types;
types {
text/javascript mjs;
2017-06-15 09:08:50 +00:00
}
2024-11-01 10:36:37 +00:00
index index.php index.html /index.php$request_uri;
2019-03-16 11:41:58 +00:00
2024-11-01 10:36:37 +00:00
fastcgi_hide_header X-Powered-By;
2019-03-16 11:41:58 +00:00
2017-06-15 09:08:50 +00:00
client_max_body_size {{getenv "MAX_UPLOAD_SIZE"}};
fastcgi_buffers 64 4K;
2019-03-16 11:41:58 +00:00
2018-01-29 21:07:48 +00:00
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;
2017-06-15 09:08:50 +00:00
2024-11-01 10:36:37 +00:00
root /var/lib/nextcloud/;
location = / {
if ( $http_user_agent ~ ^DavClnt ) {
return 302 /remote.php/webdav/$is_args$args;
}
2017-06-15 09:08:50 +00:00
}
2024-11-01 10:36:37 +00:00
location = /robots.txt {
allow all;
log_not_found off;
access_log off;
2017-06-15 09:08:50 +00:00
}
2024-11-01 10:36:37 +00:00
# Make a regex exception for `/.well-known` so that clients can still
# access it despite the existence of the regex rule
# `location ~ /(\.|autotest|...)` which would otherwise handle requests
# for `/.well-known`.
location ^~ /.well-known {
# The rules in this block are an adaptation of the rules
# in `.htaccess` that concern `/.well-known`.
location = /.well-known/carddav { return 301 /remote.php/dav/; }
location = /.well-known/caldav { return 301 /remote.php/dav/; }
location /.well-known/acme-challenge { try_files $uri $uri/ =404; }
location /.well-known/pki-validation { try_files $uri $uri/ =404; }
# Let Nextcloud's API for `/.well-known` URIs handle all other
# requests by passing them to the front-end controller.
return 301 /index.php$request_uri;
2017-06-15 09:08:50 +00:00
}
2024-11-01 10:36:37 +00:00
# Rules borrowed from `.htaccess` to hide certain paths from clients
location ~ ^/(?:build|tests|config|lib|3rdparty|templates|data)(?:$|/) { return 404; }
location ~ ^/(?:\.|autotest|occ|issue|indie|db_|console) { return 404; }
location ~ \.php(?:$|/) {
# Required for legacy support
rewrite ^/(?!index|remote|public|cron|core\/ajax\/update|status|ocs\/v[12]|updater\/.+|ocs-provider\/.+|.+\/richdocumentscode(_arm64)?\/proxy) /index.php$request_uri;
fastcgi_split_path_info ^(.+?\.php)(/.*)$;
set $path_info $fastcgi_path_info;
try_files $fastcgi_script_name =404;
2024-11-01 10:36:37 +00:00
2017-06-15 09:08:50 +00:00
include fastcgi_params;
fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;
2024-11-01 10:36:37 +00:00
fastcgi_param PATH_INFO $path_info;
2019-06-24 10:48:07 +00:00
fastcgi_param HTTPS {{ getenv "ASSUME_HTTPS" "on" }};
2019-03-16 11:41:58 +00:00
2024-11-01 10:36:37 +00:00
fastcgi_param modHeadersAvailable true; # Avoid sending the security headers twice
fastcgi_param front_controller_active true; # Enable pretty urls
2017-06-15 09:08:50 +00:00
fastcgi_pass php;
2024-11-01 10:36:37 +00:00
2017-06-15 09:08:50 +00:00
fastcgi_intercept_errors on;
fastcgi_request_buffering off;
2024-11-01 10:36:37 +00:00
fastcgi_max_temp_file_size 0;
2017-06-15 09:08:50 +00:00
}
2024-11-01 10:36:37 +00:00
# Serve static files
location ~ \.(?:css|js|mjs|svg|gif|ico|jpg|png|webp|wasm|tflite|map|ogg|flac)$ {
try_files $uri /index.php$request_uri;
# HTTP response headers borrowed from Nextcloud `.htaccess`
add_header Cache-Control "public, max-age=15778463$asset_immutable";
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 "noindex, nofollow" always;
add_header X-XSS-Protection "1; mode=block" always;
access_log off; # Optional: Don't log access to assets
2017-06-15 09:08:50 +00:00
}
2024-11-01 10:36:37 +00:00
location ~ \.(otf|woff2?)$ {
try_files $uri /index.php$request_uri;
2024-11-01 10:36:37 +00:00
expires 7d; # Cache-Control policy borrowed from `.htaccess`
access_log off; # Optional: Don't log access to assets
}
2019-03-17 17:00:43 +00:00
2024-11-01 10:36:37 +00:00
# Rule borrowed from `.htaccess`
location /remote {
return 301 /remote.php$request_uri;
2017-06-15 09:08:50 +00:00
}
2024-11-01 10:36:37 +00:00
location / {
try_files $uri $uri/ /index.php$request_uri;
2017-06-15 09:08:50 +00:00
}
}