Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Collaborative Editing #41

Open
Arthur-Terryn opened this issue Mar 31, 2022 · 0 comments
Open

Collaborative Editing #41

Arthur-Terryn opened this issue Mar 31, 2022 · 0 comments

Comments

@Arthur-Terryn
Copy link

Hello,

If you want to be able to use Collaborative Editing features you have to add this two lines :

  • proxy_set_header Upgrade $http_upgrade;
  • proxy_set_header Connection "upgrade";

There /data/nginx/include/proxy.conf

Like that :
proxy_set_header X-Real-IP $remote_addr;
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
proxy_set_header X-Forwarded-Proto $scheme;
proxy_set_header Host $http_host;
proxy_set_header Upgrade $http_upgrade;
proxy_set_header Connection "upgrade";

proxy_connect_timeout 300;

Default is HTTP/1, keepalive is only enabled in HTTP/1.1

proxy_http_version 1.1;

proxy_set_header Connection "";

chunked_transfer_encoding off;

If not you can not use this Features.

Keep doing good job.

Peace ✌️

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant