Please do not post questions in the shout-box as it will be lost in a few days. Open your own topic in the appropriate section. Thank you.

) and will stick on 3.2.0 for a long time.

It is really a problem that the communication is only through the forum, but can you both retry with this install.sh?
QuoteUntil yesterday Darko, your v.3.2.0 was working excellent on public server, except users, which were always with an IP address 127.0.0.1 That's way I've asked about your VPN.
[codeserver {
listen 80 default_server;
listen [::]:80 default_server;
# SSL configuration
# listen 443 ssl default_server;
# listen [::]:443 ssl default_server;
# Note: You should disable gzip for SSL traffic.
# See: https://bugs.debian.org/773332
# gzip off;
# Read up on ssl_ciphers to ensure a secure configuration.
# See: https://bugs.debian.org/765782
#
# Self signed certs generated by the ssl-cert package
# Don't use them in a production server!
include snippets/snakeoil.conf;
set $upstream 127.0.0.1:8905;
#set $upstream 127.0.0.1:6081;
#set $upstream 192.168.3.11:8074;
location / {
proxy_pass http://$upstream;
proxy_http_version 1.1;
proxy_buffering off;
# required for websockets
proxy_set_header Upgrade $http_upgrade;
proxy_set_header Connection $http_connection;
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
}
}
]
Page created in 0.012 seconds with 12 queries.