You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
- Use `usermod` to add user to ssl-cert group for compatibility. - Simplify KasmVNC config with protocol and SSL parameters. - Ensure UDP communication is confined to localhost for security. |
1 year ago | |
|---|---|---|
| .. | ||
| README.md | 1 year ago | |
| main.test.ts | 1 year ago | |
| main.tf | 1 year ago | |
| run.sh | 1 year ago | |
README.md
| display_name | description | icon | maintainer_github | verified | tags | |||
|---|---|---|---|---|---|---|---|---|
| KasmVNC | A modern open source VNC server | ../.icons/kasmvnc.svg | coder | true |
|
KasmVNC
Automatically install KasmVNC in a workspace, and create an app to access it via the dashboard.
module "kasmvnc" {
source = "registry.coder.com/modules/kasmvnc/coder"
version = "1.0.23"
agent_id = coder_agent.example.id
desktop_environment = "xfce"
}
Note: This module only works on workspaces with a pre-installed desktop environment. As an example base image you can use
codercom/enterprise-desktopimage.
Note: You can also use the kasmtech custom images by extending them as following:
FROM kasmweb/postman:1.16.0
ARG USER=kasm-user
USER root
# Overwrite the existing config file to disable ssl
RUN cat <<EOF > /etc/kasmvnc/kasmvnc.yaml
network:
protocol: http
ssl:
require_ssl: false
udp:
public_ip: 127.0.0.1
EOF
RUN addgroup $USER ssl-cert
USER $USER