Can't use the editor

Tom Klein October 5, 2019

I'm currently trying to install Confluence Server, everything is working fine, but the editor is not working.

If I try to edit a page, the edit button is doing nothing. If I create a new one, it opens, but if I try to write anything nothing happens.

The chrome developers console says something like "Cannot read property 'activeEditor' of undefined". I tried both, collaborative editing on and off.

Edit: It only doesn't work if HTTPS is enabled (via NGINX proxy).


What can I do?

1 answer

0 votes
Kurt Klinner
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.
October 5, 2019

@Tom Klein 

 

Hi Tom

welcome to the Atlassian community. Can you have a look to the confluence logs and share your nginx / tomcat config to check on the ssl part

 

Cheers

Kurt

Tom Klein October 7, 2019

@Kurt Klinner I found out it only breaks when accessing with https://.

That's the (only) connector enabled:

<Connector port="8090" connectionTimeout="20000" redirectPort="8443"
maxThreads="48" minSpareThreads="10"
enableLookups="false" acceptCount="10" debug="0" URIEncoding="UTF-8"
protocol="org.apache.coyote.http11.Http11NioProtocol"
scheme="https" secure="true" proxyName="confluence.yourname.xyz" proxyPort="443"/>

 

That's the part of the NGINX config:

location / {
client_max_body_size 20M;
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://127.0.0.1:8090;
}
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";
}
location /synchrony-proxy {
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://127.0.0.1:8090/synchrony-proxy;
proxy_http_version 1.1;
proxy_set_header Upgrade $http_upgrade;
proxy_set_header Connection "Upgrade";
}

 

Thanks for your response.

Suggest an answer

Log in or Sign up to answer
TAGS
AUG Leaders

Atlassian Community Events