Seungmin Kim

Results 665 comments of Seungmin Kim

@Inrixia In `top` or `htop`, could you get the PID of any of the `turnserver` process and do `cat /proc/${PID}/cmdline | tr '\000' ' '` for `${PID}`?

I need to see the input for: ```bash # Configure coTURN script RUN echo "#!/bin/bash\n\ set -e\n\ turnserver \ --verbose \ --listening-ip=\"0.0.0.0\" \ --listening-ip=\"::\" \ --listening-port=\"\${SELKIES_TURN_PORT:-3478}\" \ --realm=\"\${TURN_REALM:-example.com}\" \ --external-ip=\"\${TURN_EXTERNAL_IP:-\$(dig...

External IP SHOULD NOT be 127.0.0.1. It should be your real IP that clients should know (public IP if over the internet, private IP if confined to LAN). Otherwise, I...

Port should be 8080. It should go through NGINX because the interfaces themselves only allow loopback access for security.

Then, you should change `10.224.1.158` to an accessible public IP in `SELKIES_TURN_HOST`.

Since you are using Azure, specifying the external IP is required.

When you set SELKIES_TURN_HOST to 127.0.0.1, this means that the client is the same as the server. Any other client will not know where the (internal) TURN server will be....

`SELKIES_TURN_HOST` is also the TURN server hostname that the client looks to connect to (and `TURN_EXTERNAL_IP` is a hostname-IP conversion of that by default). Without it set to the correct...

Refer to https://github.com/kasmtech/KasmVNC/issues/303#issuecomment-2733396418 for utilizing NVIDIA PRIME for OpenGL support.

@Maipengfei @codernew007 I suggest combining VirtualGL to make things work. Check https://github.com/selkies-project/docker-nvidia-egl-desktop/blob/91ba69533d707cf21933cf30097491315d7805cf/Dockerfile#L296 and https://github.com/selkies-project/docker-nvidia-egl-desktop/blob/91ba69533d707cf21933cf30097491315d7805cf/entrypoint.sh#L98. You may directly use my container implementation, which has an option to use KasmVNC as a...