Browse Source

fix bad copypaste in the example nginx file

master
ansuz 11 months ago
parent
commit
1be01c07ee
1 changed files with 1 additions and 1 deletions
  1. 2
      docs/example.nginx.conf

2
docs/example.nginx.conf

@ -106,7 +106,7 @@ server {
if ($uri ~ ^\/common\/onlyoffice\/.*\/index\.html.*$) { set $unsafe 1; }
# everything except the sandbox domain is a privileged scope, as they might be used to handle keys
if ($host != sandbox.cryptpad.info) { set $unsafe 0; }
if ($host != $sandbox_domain) { set $unsafe 0; }
# privileged contexts allow a few more rights than unprivileged contexts, though limits are still applied
if ($unsafe) {

Loading…
Cancel
Save