Testing Confluence 6.9.0 but collaborative editing turned OFF

Gerald MURIEL July 18, 2018

If collaborative editing is turned ON, no editing is allowed in any of our pages. Synchrony heap size was increased to 2GB but it is still giving the error. 

1 answer

0 votes
Shankar Asam {Appfire}
Rising Star
Rising Star
Rising Stars are recognized for providing high-quality answers to other users. Rising Stars receive a certificate of achievement and are on the path to becoming Community Leaders.
July 18, 2018

Hi Gerald,

The collaborative editing comes default with confluence standalone server version and hope you're using the same. Are you using any proxy front ended to your confluence server? If so, you may need to route /synchrony traffic to synchrony port on 8091 (default port). An example for nginx is below;

server {
    listen www.example.com:80;
    server_name www.example.com;
    location /confluence {
        client_max_body_size 100m;
        proxy_set_header X-Forwarded-Host $host;
        proxy_set_header X-Forwarded-Server $host;
        proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for; 
        proxy_pass http://localhost:8090/confluence;
    }
    location /synchrony {
        proxy_set_header X-Forwarded-Host $host;
        proxy_set_header X-Forwarded-Server $host;
        proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
        proxy_pass http://localhost:8091/synchrony;
        proxy_http_version 1.1;
        proxy_set_header Upgrade $http_upgrade;
        proxy_set_header Connection "Upgrade";
    }
}

Here is the link from atlassian:- https://confluence.atlassian.com/confkb/how-to-use-nginx-to-proxy-requests-for-confluence-313459790.html

Gerald MURIEL July 19, 2018

Thanks Shankar, I will let you know if this works out.

Suggest an answer

Log in or Sign up to answer
TAGS
AUG Leaders

Atlassian Community Events