We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents d8bcbb3 + c47352a commit e3cf74eCopy full SHA for e3cf74e
1 file changed
root/defaults/nginx/site-confs/default.conf.sample
@@ -1,4 +1,4 @@
1
-## Version 2024/06/24 - Changelog: https://github.com/linuxserver/docker-nextcloud/commits/master/root/defaults/nginx/site-confs/default.conf.sample
+## Version 2024/07/16 - Changelog: https://github.com/linuxserver/docker-nextcloud/commits/master/root/defaults/nginx/site-confs/default.conf.sample
2
3
# Set the `immutable` cache control options only for assets with a cache busting `v` argument
4
map $arg_v $asset_immutable {
@@ -7,8 +7,10 @@ map $arg_v $asset_immutable {
7
}
8
9
server {
10
- listen *:80 default_server;
11
- listen *:443 ssl default_server;
+ listen 80 default_server;
+ listen [::]:80 default_server;
12
+ listen 443 ssl default_server;
13
+ listen [::]:443 ssl default_server;
14
15
server_name _;
16
0 commit comments