fix overwriteprotocol in nextcloud
This commit is contained in:
parent
f1af82968b
commit
aaeba29a72
1 changed files with 4 additions and 2 deletions
|
@ -75,8 +75,10 @@ in
|
||||||
extraOptions = {
|
extraOptions = {
|
||||||
"overwrite.cli.url" = "https://" + fqdn;
|
"overwrite.cli.url" = "https://" + fqdn;
|
||||||
"overwritehost" = fqdn;
|
"overwritehost" = fqdn;
|
||||||
"overwriteprotocol" = "https";
|
# 'trusted_domains' needed otherwise we get this issue https://help.nextcloud.com/t/the-polling-url-does-not-start-with-https-despite-the-login-url-started-with-https/137576/2
|
||||||
"overwritecondaddr" = "^127\\.0\\.0\\.1$";
|
"trusted_domains" = [ fqdn ];
|
||||||
|
"overwriteprotocol" = "https"; # Needed if behind a reverse_proxy
|
||||||
|
"overwritecondaddr" = ""; # We need to set it to empty otherwise overwriteprotocol does not work.
|
||||||
};
|
};
|
||||||
|
|
||||||
phpOptions = {
|
phpOptions = {
|
||||||
|
|
Loading…
Reference in a new issue