We want to use TSPlus behind an Apache 2.4 web-server with mod_proxy enabled.
This is what we set in our Apache default-ssl.conf for our TSPlus host:
Code: Select all
<VirtualHost *:443>
ServerName tsplus.mydomain.com
Redirect / https://tsplus.mydomain.com/
ProxyRequests off
ProxyPreserveHost on
ProxyPass / https://tsplus.mydomain.com/
ProxyPassReverse / https://tsplus.mydomain.com/
SSLEngine on
SSLProxyEngine on
SSLProtocol ALL -SSLv2 -SSLv3
SSLHonorCipherOrder on
SSLCipherSuite ECDH+AESGCM:DH+AESGCM:ECDH+AES256:DH+AES256:ECDH+AES128:DH+AES:ECDH+3DES:DH+3DES:RSA+AESGCM:RSA+AES:RSA+3DES:!aNULL:!MD5:!DSS
SSLCertificateKeyFile /etc/apache2/ssl/myserver.key
SSLCertificateFile /etc/apache2/ssl/myserver.crt
ErrorLog /var/log/apache2/tsplus-ssl-error.log
CustomLog /var/log/apache2/tsplus-ssl-access.log common
</VirtualHost>
First it takes round about 5 Minutes till I see the Windows Desktop, when I start an application it also takes 5 minutes until I see it on
the remote session, and when I type in a user name or something like that, it also takes 5 minutes until I see what I was typing.
In the Apache access.log I get this entries every few seconds:
In the Apache error.log I see this sometimes:[29/Oct/2015:10:19:32 +0100] "GET /socket.io/xhr-polling/ea085b41-6b2c-43f0-890c-22910847638b/1446110387506 HTTP/1.1" 200 378
[29/Oct/2015:10:19:36 +0100] "POST /socket.io/xhr-polling/ea085b41-6b2c-43f0-890c-22910847638b/send HTTP/1.1" 200 248
[29/Oct/2015:10:19:36 +0100] "GET /socket.io/xhr-polling/ea085b41-6b2c-43f0-890c-22910847638b/1446110392326 HTTP/1.1" 200 391
Can anybody help us to get this running please?[Thu Oct 29 08:55:12.361116 2015] [proxy_http:error] [pid 17611] (70014)End of file found: [client xxx.xxx.xxx.xxx:33776] AH01102: error reading status line from remote server tsplus.mydomain.com:443, referer: tsplus.mydomain.com/
[Thu Oct 29 08:57:22.995342 2015] [proxy_http:error] [pid 17574] (70014)End of file found: [client xxx.xxx.xxx.xxx:33194] AH01102: error reading status line from remote server tsplus.mydomain.com:443
[Thu Oct 29 08:57:22.995511 2015] [proxy:error] [pid 17574] [client xxx.xxx.xxx.xxx:33194] AH00898: Error reading from remote server returned by /socket.io/websocket_https
Thx