Forums

Articles
Create
cancel
Showing results for 
Search instead for 
Did you mean: 

How to remove a Panel or change its visibility whose owner is a deactivated user?

Walace Maia
I'm New Here
I'm New Here
Those new to the Atlassian Community have posted less than three times. Give them a warm welcome!
April 3, 2023

There are some panels with public visibility created by old users that I don´t know how to remove or change it's visibility, generating visual polution.

2 answers

0 votes
Stephen Bancroft
September 13, 2018

yep, that fixed it for me as well. 

# a2enmod proxy_wstunnel
# systemctl restart apache2

 

Fr0zt
Contributor
September 14, 2018

Can you share your apache files here please.

Stephen Bancroft
September 16, 2018

There is a bunch of stuff for other Atlassian apps in my Apache config but this is the relevant part for Synchrony.

 ProxyPass /synchrony http://localhost:8091/synchrony
ProxyPassReverse /synchrony http://localhost:8091/synchrony

<Location /synchrony>
Require all granted
RewriteEngine on
RewriteCond %{HTTP:UPGRADE} ^WebSocket$ [NC]
RewriteCond %{HTTP:CONNECTION} Upgrade$ [NC]
RewriteRule .* ws://localhost:8091%{REQUEST_URI} [P]
</Location>
0 votes
sarath sasi
May 23, 2018

Please try adding this in your apache.

 


<Location /synchrony>
Require all granted
RewriteEngine on
RewriteCond %{HTTP:UPGRADE} ^WebSocket$ [NC]
RewriteCond %{HTTP:CONNECTION} Upgrade$ [NC]
RewriteRule .* ws://ipaddress:synchronyport%{REQUEST_URI} [P]
</Location>

Fr0zt
Contributor
May 24, 2018

Hello.

Do you mean adding it inside the <VirtualHost:80> or inside the <Virtualhost:443> ?

Thanks,

sarath sasi
May 24, 2018

Just add this in 443.Hope your 80 port will redirect 443.

sarath sasi
May 24, 2018

Is this helped?

Fr0zt
Contributor
May 25, 2018

 I try adding that to my <Virtualhost:443>, but I still have the same issue.

Now It looks like this:

 

#Confluence
<VirtualHost *:443>
DocumentRoot "c:/Apache24/htdocs"
ServerName kb.domain.it
ErrorLog "c:/Apache24/logs/error.log"
TransferLog "c:/Apache24/logs/access.log"
SSLEngine on
SSLCertificateFile "c:/certification/domain.it.crt"
SSLCertificateKeyFile "c:/certification/domain.it.private-key.text"

BrowserMatch "MSIE [2-5]" \
nokeepalive ssl-unclean-shutdown \
downgrade-1.0 force-response-1.0
CustomLog "c:/Apache24/logs/ssl_request.log" \
"%t %h %{SSL_PROTOCOL}x %{SSL_CIPHER}x \"%r\" %b"

SSLProxyEngine On
ProxyRequests Off
ProxyPreserveHost On
ProxyPass / https://hostname:9443/
ProxyPassReverse / https://hostname:9443/

<Location /synchrony>
Require all granted
RewriteEngine on
RewriteCond %{HTTP:UPGRADE} ^WebSocket$ [NC]
RewriteCond %{HTTP:CONNECTION} Upgrade$ [NC]
RewriteRule .* ws://hostname:8091%{REQUEST_URI} [P]
</Location>


</VirtualHost>

 

Do you have any more ideas about this issue?

sarath sasi
May 28, 2018

Hi,

 

1.In the network tab can you filter with bayeux and see what is the response code.For synchrony to work this should give 101 response.

2.Are you hosting synchrony in same machine,if yes have to trouble shoot whether the port is open and any other error from synchrony log.

Aleks G
July 9, 2018

Hey! Have you managed to resolve the issue? I'm struggling with the same thing at the moment.

sarath sasi
July 9, 2018

What is the exact issue you are facing?

Aleks G
July 9, 2018

I'm having the exact same issue that the OP is talking about:

 

WebSocket connection to 'wss://confluence.example.com/synchrony-proxy/v1/bayeux-sync1' failed: Error during WebSocket handshake: Unexpected response code: 200
sarath sasi
July 9, 2018

What proxy you have infront of confluence?.Are you running synchrony in same server.

Aleks G
July 9, 2018

Ok, I now found the solution.  I had to enable ws proxy module in apache :)  RTFM :)

Suggest an answer

Log in or Sign up to answer