Termix 1.8.0 has been released. (github.com)
from boebbele@discuss.tchncs.de to selfhosted@lemmy.world on 11 Nov 11:25
https://discuss.tchncs.de/post/48736710

I stumbled across the GitHub page by chance. I’ve been looking for an alternative to Terminus for quite some time. Termix looks really good. Very nice web interface. It’s still a bit buggy in a few places, but it’s quite usable.

“Termix is a web-based server management platform with SSH terminal, tunneling, and file editing capabilities. Here, you can find the repositories for the main Termix server, along with the mobile app, documentation, and support”

#selfhosted

threaded - newest

studentofarkad@lemmy.zip on 11 Nov 17:31 next collapse

New to self-hosting, what does this allow you to do?

Black616Angel@discuss.tchncs.de on 11 Nov 22:49 collapse

In short: a management web interface.

It has a lot of tools, you may find helpful when working remotely or with a headless setup.

BarHocker@discuss.tchncs.de on 12 Nov 02:37 collapse

That is too short. I still have no idea why I would want to install that on my server.

I feel like a lot of projects are missing a way to find out what they do without installing them.

shadeless@discuss.tchncs.de on 12 Nov 02:45 next collapse

The GitHub page lists all the features and has screenshots of the product, not sure what else you expect

github.com/Termix-SSH/Termix?tab=readme-ov-file

nottelling@lemmy.world on 12 Nov 04:36 collapse

missing a way to find out what they do without installing them

At the very top of the project page it says:

Termix is a web-based server management platform with SSH terminal, tunneling, and file editing capabilities.

Now you know what it does without installing it

flightyhobler@lemmy.world on 12 Nov 04:29 next collapse

Does it support access without https?

boebbele@discuss.tchncs.de on 12 Nov 11:33 collapse

Yes

HereIAm@lemmy.world on 12 Nov 05:14 next collapse

Cool, I’ll check this out. Always a bit of a ball ache when I need to access the server while lying in and too lazy to get up. Using vim on a phone is always an adventure in patience.

flightyhobler@lemmy.world on 12 Nov 12:21 collapse

Whats up with the documentation and how can I add servers?

<img alt="" src="https://lemmy.world/pictrs/image/a7f6e589-178d-42c8-88e0-65b633a046f6.jpeg">

<img alt="" src="https://lemmy.world/pictrs/image/e4411693-262d-48b0-a755-b36b15d879be.jpeg">

boebbele@discuss.tchncs.de on 13 Nov 02:07 collapse

Adding hosts is currently only possible in a browser, not on a smartphone.

boebbele@discuss.tchncs.de on 13 Nov 02:10 collapse

My compose:

services:
  termix:
    image: ghcr.io/lukegus/termix:latest
    container_name: termix
    restart: unless-stopped
    ports:
      - 8081:8081
    volumes:
      - /home/dockervolumes/data:/app/data
    environment:
      PORT: "8081"
volumes:
  termix-data:
    driver: local
networks: {}

It works great.