[PR #162] [MERGED] Vnc and Term Proxy Example #187

Closed
opened 2026-03-03 15:30:36 +03:00 by kerem · 0 comments
Owner

📋 Pull Request Information

Original PR: https://github.com/luthermonson/go-proxmox/pull/162
Author: @ricardoalcantara
Created: 9/18/2024
Status: Merged
Merged: 9/19/2024
Merged by: @luthermonson

Base: mainHead: main


📝 Commits (1)

  • 45a4415 Vnc and Term Proxy Example

📊 Changes

24 files changed (+1807 additions, -0 deletions)

View changed files

examples/term-and-vnc/.air.toml (+51 -0)
examples/term-and-vnc/.env.sample (+5 -0)
examples/term-and-vnc/.gitignore (+26 -0)
examples/term-and-vnc/README.md (+78 -0)
examples/term-and-vnc/go.mod (+49 -0)
examples/term-and-vnc/go.sum (+171 -0)
examples/term-and-vnc/impl/common.go (+51 -0)
examples/term-and-vnc/impl/term.go (+88 -0)
examples/term-and-vnc/impl/vnc.go (+129 -0)
examples/term-and-vnc/main.go (+42 -0)
examples/term-and-vnc/server.crt (+20 -0)
examples/term-and-vnc/server.key (+28 -0)
examples/term-and-vnc/website/.gitignore (+24 -0)
examples/term-and-vnc/website/index.html (+15 -0)
examples/term-and-vnc/website/package-lock.json (+840 -0)
examples/term-and-vnc/website/package.json (+20 -0)
examples/term-and-vnc/website/public/vite.svg (+1 -0)
examples/term-and-vnc/website/style.css (+10 -0)
examples/term-and-vnc/website/term.html (+17 -0)
examples/term-and-vnc/website/term.js (+21 -0)

...and 4 more files

📄 Description

As promised, here’s the sample code. Let me know if you need any changes to fit the project better.


🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.

## 📋 Pull Request Information **Original PR:** https://github.com/luthermonson/go-proxmox/pull/162 **Author:** [@ricardoalcantara](https://github.com/ricardoalcantara) **Created:** 9/18/2024 **Status:** ✅ Merged **Merged:** 9/19/2024 **Merged by:** [@luthermonson](https://github.com/luthermonson) **Base:** `main` ← **Head:** `main` --- ### 📝 Commits (1) - [`45a4415`](https://github.com/luthermonson/go-proxmox/commit/45a4415784f114e9980da92da3064e5dff3634c3) Vnc and Term Proxy Example ### 📊 Changes **24 files changed** (+1807 additions, -0 deletions) <details> <summary>View changed files</summary> ➕ `examples/term-and-vnc/.air.toml` (+51 -0) ➕ `examples/term-and-vnc/.env.sample` (+5 -0) ➕ `examples/term-and-vnc/.gitignore` (+26 -0) ➕ `examples/term-and-vnc/README.md` (+78 -0) ➕ `examples/term-and-vnc/go.mod` (+49 -0) ➕ `examples/term-and-vnc/go.sum` (+171 -0) ➕ `examples/term-and-vnc/impl/common.go` (+51 -0) ➕ `examples/term-and-vnc/impl/term.go` (+88 -0) ➕ `examples/term-and-vnc/impl/vnc.go` (+129 -0) ➕ `examples/term-and-vnc/main.go` (+42 -0) ➕ `examples/term-and-vnc/server.crt` (+20 -0) ➕ `examples/term-and-vnc/server.key` (+28 -0) ➕ `examples/term-and-vnc/website/.gitignore` (+24 -0) ➕ `examples/term-and-vnc/website/index.html` (+15 -0) ➕ `examples/term-and-vnc/website/package-lock.json` (+840 -0) ➕ `examples/term-and-vnc/website/package.json` (+20 -0) ➕ `examples/term-and-vnc/website/public/vite.svg` (+1 -0) ➕ `examples/term-and-vnc/website/style.css` (+10 -0) ➕ `examples/term-and-vnc/website/term.html` (+17 -0) ➕ `examples/term-and-vnc/website/term.js` (+21 -0) _...and 4 more files_ </details> ### 📄 Description As promised, here’s the sample code. Let me know if you need any changes to fit the project better. --- <sub>🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.</sub>
kerem 2026-03-03 15:30:36 +03:00
Sign in to join this conversation.
No labels
pull-request
No milestone
No project
No assignees
1 participant
Notifications
Due date
The due date is invalid or out of range. Please use the format "yyyy-mm-dd".

No due date set.

Dependencies

No dependencies set.

Reference
starred/go-proxmox#187
No description provided.