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.
40 lines
976 B
Markdown
40 lines
976 B
Markdown
---
|
|
display_name: KasmVNC
|
|
description: A modern open source VNC server
|
|
icon: ../.icons/kasmvnc.svg
|
|
maintainer_github: coder
|
|
verified: true
|
|
tags: [helper, VNC, web]
|
|
---
|
|
|
|
# KasmVNC
|
|
|
|
Automatically install [KasmVNC](https://kasmweb.com/kasmvnc) in a workspace, and create an app to access it via the dashboard.
|
|
|
|
## Examples
|
|
|
|
1. Add latest version of KasmVNC with [`lxde`](https://www.lxde.org/) desktop environment:
|
|
|
|
```hcl
|
|
module "kasmvnc" {
|
|
source = "https://registry.coder.com/modules/kasmvnc"
|
|
agent_id = coder_agent.example.id
|
|
}
|
|
|
|
```
|
|
|
|
2. Add specific version of KasmVNC with [`mate`](https://mate-desktop.org/) desktop environment and custom port:
|
|
|
|
```hcl
|
|
module "kasmvnc" {
|
|
source = "https://registry.coder.com/modules/kasmvnc"
|
|
agent_id = coder_agent.example.id
|
|
version = "1.0.0"
|
|
desktop_environment = "mate"
|
|
port = 6080
|
|
}
|
|
|
|
```
|
|
|
|
![Screenshot of KasmVNC]() //TODO
|