Streamline services: comment out vncfox
This commit is contained in:
@@ -8,14 +8,12 @@ A collection of Docker configurations designed to bridge the gap between modern
|
|||||||
- **[Stunnel](https://www.stunnel.org/):** Used for SMTP/POP3/IMAP protocol/TLS translation.
|
- **[Stunnel](https://www.stunnel.org/):** Used for SMTP/POP3/IMAP protocol/TLS translation.
|
||||||
- **[WebOne](https://github.com/atauenis/webone):** Modern-to-legacy HTTP proxy for browsing.
|
- **[WebOne](https://github.com/atauenis/webone):** Modern-to-legacy HTTP proxy for browsing.
|
||||||
- **[WRP (Web Rendering Proxy)](https://github.com/tenox7/wrp):** Visual-rendering proxy that converts modern web pages into clickable image maps.
|
- **[WRP (Web Rendering Proxy)](https://github.com/tenox7/wrp):** Visual-rendering proxy that converts modern web pages into clickable image maps.
|
||||||
- **[VNCFox](https://github.com/tenox7/vncfox):** Runs a modern browser in a VNC session, accessible from vintage hardware.
|
|
||||||
- **[Browservice](https://github.com/ttalvitie/browservice):** A proxy that lets modern browsers run locally but render into old browser windows.
|
- **[Browservice](https://github.com/ttalvitie/browservice):** A proxy that lets modern browsers run locally but render into old browser windows.
|
||||||
|
|
||||||
## Features
|
## Features
|
||||||
- **Legacy Mail Proxy:** Uses `Stunnel` to translate non-SSL legacy client connections into secure TLS 1.3 tunnels for modern servers. *Note: Best used with your own private mail server (like Synology MailPlus) that supports standard basic authentication (PLAIN/LOGIN).*
|
- **Legacy Mail Proxy:** Uses `Stunnel` to translate non-SSL legacy client connections into secure TLS 1.3 tunnels for modern servers. *Note: Best used with your own private mail server (like Synology MailPlus) that supports standard basic authentication (PLAIN/LOGIN).*
|
||||||
- **WebOne Proxy:** An HTTP proxy that strips modern security requirements and complex scripts, allowing vintage browsers to access the modern web.
|
- **WebOne Proxy:** An HTTP proxy that strips modern security requirements and complex scripts, allowing vintage browsers to access the modern web.
|
||||||
- **WRP (Web Rendering Proxy):** A visual proxy that renders modern webpages as clickable image maps for hardware that cannot handle modern web standards.
|
- **WRP (Web Rendering Proxy):** A visual proxy that renders modern webpages as clickable image maps for hardware that cannot handle modern web standards.
|
||||||
- **VNCFox:** Provides a remote-controlled modern browser session via VNC, perfect for high-capability legacy OSes (like Windows XP).
|
|
||||||
- **Browservice:** Provides a high-fidelity browsing experience by streaming a modern browser session directly to your legacy browser.
|
- **Browservice:** Provides a high-fidelity browsing experience by streaming a modern browser session directly to your legacy browser.
|
||||||
|
|
||||||
## Services
|
## Services
|
||||||
@@ -24,7 +22,6 @@ A collection of Docker configurations designed to bridge the gap between modern
|
|||||||
| **Stunnel** | Mail Proxy | 25, 110, 143 | Bridges legacy mail clients to modern TLS-enabled servers. |
|
| **Stunnel** | Mail Proxy | 25, 110, 143 | Bridges legacy mail clients to modern TLS-enabled servers. |
|
||||||
| **WebOne** | HTTP Proxy | 8081 | Allows retro browsers to access the modern web (strips TLS/scripts). |
|
| **WebOne** | HTTP Proxy | 8081 | Allows retro browsers to access the modern web (strips TLS/scripts). |
|
||||||
| **WRP** | Visual Proxy | 8082 | Renders modern sites as image maps for very limited hardware. |
|
| **WRP** | Visual Proxy | 8082 | Renders modern sites as image maps for very limited hardware. |
|
||||||
| **VNCFox** | Remote Browser | 5900 | Provides a VNC-based session for a modern browser. |
|
|
||||||
| **Browservice** | Web Proxy | 8083 | High-fidelity browsing for legacy clients. |
|
| **Browservice** | Web Proxy | 8083 | High-fidelity browsing for legacy clients. |
|
||||||
|
|
||||||
## Quick Start
|
## Quick Start
|
||||||
@@ -36,7 +33,6 @@ A collection of Docker configurations designed to bridge the gap between modern
|
|||||||
3. **Retro Browsing:**
|
3. **Retro Browsing:**
|
||||||
- **For WebOne:** Set your browser's proxy settings to `host-ip:8081`.
|
- **For WebOne:** Set your browser's proxy settings to `host-ip:8081`.
|
||||||
- **For WRP:** Navigate to `http://host-ip:8082` in your legacy browser.
|
- **For WRP:** Navigate to `http://host-ip:8082` in your legacy browser.
|
||||||
- **For VNCFox:** Use any VNC client (e.g., TightVNC) to connect to `host-ip:5900` (Password: `vncfox`).
|
|
||||||
- **For Browservice:** Navigate to `http://host-ip:8083` in your legacy browser.
|
- **For Browservice:** Navigate to `http://host-ip:8083` in your legacy browser.
|
||||||
|
|
||||||
## Configuration
|
## Configuration
|
||||||
|
|||||||
16
compose.yml
16
compose.yml
@@ -34,14 +34,14 @@ services:
|
|||||||
networks:
|
networks:
|
||||||
- mail-proxy
|
- mail-proxy
|
||||||
|
|
||||||
vncfox:
|
# vncfox:
|
||||||
image: tenox7/vncfox
|
# image: tenox7/vncfox
|
||||||
container_name: vncfox-proxy
|
# container_name: vncfox-proxy
|
||||||
restart: always
|
# restart: always
|
||||||
ports:
|
# ports:
|
||||||
- "5900:5900"
|
# - "5900:5900"
|
||||||
networks:
|
# networks:
|
||||||
- mail-proxy
|
# - mail-proxy
|
||||||
|
|
||||||
browservice:
|
browservice:
|
||||||
image: ghcr.io/eviechoi314/browservice-docker:latest
|
image: ghcr.io/eviechoi314/browservice-docker:latest
|
||||||
|
|||||||
Reference in New Issue
Block a user