-
system Ubuntu server 20.04 LTS config/code-server/config.yaml bind-addr: IP:Port /etc/apache2/sites-available/code-server <VirtualHost *:80>
Specify the SSL cache directory. If possible, use shmcb, otherwise use the provided path.SSLStaplingCache shmcb:/var/run/ocsp(128000) <VirtualHost *:443>
I set it like this, but I keep getting an error 1006. sorry for my english |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 1 reply
-
Using CDN? Some CDN don't support websocket and I met with same problem, for I used qiniu dynamic CDN at first and it didn't support websocket. Later I make use of ECDN of Tencent CDN and it works. You can try to connect to code-server with ip:port directly, if problem still exists, code-server itself may be to blame and you can open an issue. If not, check your apache config refering to official docs. |
Beta Was this translation helpful? Give feedback.
Using CDN? Some CDN don't support websocket and I met with same problem, for I used qiniu dynamic CDN at first and it didn't support websocket. Later I make use of ECDN of Tencent CDN and it works. You can try to connect to code-server with ip:port directly, if problem still exists, code-server itself may be to blame and you can open an issue. If not, check your apache config refering to official docs.
I notice this
SSLProtocol all -SSLv2 -SSLv3
. Try to change it toSSLProtocol +TLSv1.2
?