กรุณาปิด โปรแกรมบล๊อกโฆษณา เพราะเราอยู่ได้ด้วยโฆษณาที่ท่านเห็น
Please close the adblock program. Because we can live with the ads you see
Please close the adblock program. Because we can live with the ads you see
addon 2.x [BS] Real time chat 2.0.5
- ผู้เขียน thxf.org
- วันที่สร้าง
.to start the server side of the chat - you need to open the SSH console, go to the forum directory and enter the
command
Restart command:
Stop command:
If you use Cloudflare, then you need to enable the
option in the
section.
And read this https://support.cloudflare.com/hc/e...work-ports-compatible-with-Cloudflare-s-proxy.
If you want to change the port of the chat, then after you change it in the options, you need to restart the server part of the chat.
Chat port must be opened for TCP connections.
Channel adapter port must be opened for TCP connections from localhost (127.0.0.1).
Nginx proxy configuration template:
php chat_cli start -dcommand
Restart command:
php chat_cli restartStop command:
php chat_cli stopIf you use Cloudflare, then you need to enable the
Websocketsoption in the
Networksection.
And read this https://support.cloudflare.com/hc/e...work-ports-compatible-with-Cloudflare-s-proxy.
If you want to change the port of the chat, then after you change it in the options, you need to restart the server part of the chat.
Chat port must be opened for TCP connections.
Channel adapter port must be opened for TCP connections from localhost (127.0.0.1).
Nginx proxy configuration template:
NGINX:
location /chat.io/ {
proxy_pass http://127.0.0.1:{your_chat_port};
proxy_http_version 1.1;
proxy_set_header Upgrade $http_upgrade;
proxy_set_header Connection $connection_upgrade;
}