Spyke

Posts

selfhosted·SelfhostedbyLobotomie

Help needed setting up NGINX reverse Proxy / HA / Vaultwarden using Duckdns

Hey Guys,

so I still have no clue about most of the stuff im doing hence why I am doing it :)

I have a ubuntu system running all kinds of docker containers and I want to expose homeassistant and vaultwarden to the internet.

Now I have set up a Duckdns account, I have setup my Router (fritzbox) to update the dyndns settings, I have set up my homeassistant the following:

homeassistant:
  internal_url: http://192.168.178.214:8123
  external_url: https://ha.xxxxx.duckdns.org

http:
  use_x_forwarded_for: true
  trusted_proxies:
    - 172.22.0.0/24

Following is my Homeassistant Configuration:

  homeassistant:
    container_name: homeassistant
    image: "ghcr.io/home-assistant/home-assistant:stable"
    volumes:
      - /homeassistant/:/config
      - /etc/localtime:/etc/localtime:ro
    restart: unless-stopped
    network_mode: host
    privileged: true
    ports:
      - 8123:8123
      - 5683:5683

  nginx-proxy-manager:
    container_name: nginx
    privileged: true
    image: 'jc21/nginx-proxy-manager:latest'
    ports:
      - '80:80'
      - '81:81'
      - '443:443'
    environment:
      DB_MYSQL_HOST: "nginx-db"
      DB_MYSQL_PORT: 3306
    volumes:
      - /nginx/data:/data
      - /nginx/letsencrypt:/etc/letsencrypt

  nginx-db:
    container_name: nginx-db
    image: 'jc21/mariadb-aria:latest'
    environment:
    volumes:
      - /nginx/mysql:/var/lib/mysql

  vaultwarden:
    container_name: vaultwarden
    image: vaultwarden/server:latest
    restart: unless-stopped
    volumes:
      - /vaultwarden:/data/
    ports:
      - 8125:3012
      - 8124:80
    environment:
      - DOMAIN=https://vw.xxxxx.duckdns.org
      - LOGIN_RATELIMIT_MAX_BURST=10
      - LOGIN_RATELIMIT_SECONDS=60
      - ADMIN_RATELIMIT_MAX_BURST=10
      - ADMIN_RATELIMIT_SECONDS=60
      - ADMIN_TOKEN=
      - SENDS_ALLOWED=true
      - EMERGENCY_ACCESS_ALLOWED=true
      - WEB_VAULT_ENABLED=true
      - SIGNUPS_ALLOWED=true

I have forwarded the ports in the router.

I have set up nginx the following:

Issue is when I open the website, it will give me the error that hsts is enabled, even though I definitely did not check this option ( and I never did (today!).

What is the reason for this?

Do I have to set some sort of header?

Same thing with vaultwarden, basically I set this up 1:1 except for the url whichi is vw.xxxxx.duckdns .org.

View original on lemmy.world

Hardware to run 30 Cameras ?

So I have about 30 Cameras I want to run on my instance. Step by step all of them will record their videos on a local sd card and I will only watch the stream over HA (no hardware nvr). How can I set this up so my phone/laptop will not struggle at all loading these streams?

Right now I am playing them using onvif and or fmpeg and all of my hardware starts to lag heavily when I open the camera sites.

The streams are split up over 3 pages so it's 13/10/7 Streams each.

View original on lemmy.world
de_edv·de_EDVbyLobotomie

150.000 Emails aus IMAP exportieren

Hallo Freunde,

ich habe eine alte Sicherung von allen Emails welche ich nun aus unserem proprietären Mailclient exportieren möchte. Was erfolgreich geklappt hat ist der rückimport auf den IMAP Server, allerdings habe ich jetzt einen Ordner mit hunderten Unterordnern (also immer Archiv/Benutzer1/Eingang, Ausgang usw. dann Archiv/Benutzer2/Eingang, Ausgang usw.).

Wie bekomme ich diese Emails am besten von meinem IMAP Server runtergeladen als .eml datei dass dann alle Emails in einem einzelnen Ordner liegen (also nur in z.b. C:\Archiv).

Versucht habe ich es schon mit Python über imaplib aber der verhaspelt sich da und mit ChatGPT Code komm ich nicht wirklich weiter.

Außerdem habe ich Thunderbird mit Import Export Tools NG probiert aber wenn ich den Ordner auswähle und sage alles als eml exportieren lädt er für 5 sekunden und bricht dann ab. Beim MBOX Export mit abgeflachten Ordnern exportiert er wieso auch immer nur ~14.000 anstelle dem gesamten Inhalt.

Kennt da sonst jemand Software? Oder irgendein funktionierendes Skript. Sonst kann ich auch mal den Code von GPT teilen vielleicht kann den jemand überarbeiten dass er funktioniert.

View original on lemmy.world
selfhosted·SelfhostedbyLobotomie

Vaultwarden using Docker Compose with existing Certificates

Hello Friends,

I have a small ubuntu Server and I finally also want to transfer my Vaultwarden Instance to it. On this Server I have several services running (homeassistant, ...) and Certbot via Dehydrated (right now I get a certificate for my duckdns address). In some directory I have the privkey and fullchain files.

Now my Problem is that when I start vaultwarden it wont load as https.

I believe, my Problem is telling Vaultwarden, where my certificate files are located so it can use them accordingly.

This is my Compose File right now:

  vaultwarden:
    container_name: vaultwarden
    image: vaultwarden/server:latest
    restart: unless-stopped
    volumes:
      - /home/vaultwarden:/data/
      - /home/(directory to my certificates):/usr/share/ca-certificates/
    ports:
      - 8129:80
    environment:
      - DOMAIN=https://hurrdurr.duckdns.org
      - LOGIN_RATELIMIT_MAX_BURST=10
      - LOGIN_RATELIMIT_SECONDS=60
      - ADMIN_RATELIMIT_MAX_BURST=10
      - ADMIN_RATELIMIT_SECONDS=60
      - ADMIN_TOKEN=token
      - SENDS_ALLOWED=true
      - EMERGENCY_ACCESS_ALLOWED=true
      - WEB_VAULT_ENABLED=true
      - SIGNUPS_ALLOWED=true

The Volume Mapping to the certificates was just me trying it out so maybe its working if I map it like that.

If I open the 8129 in my Browser it will just time out. I also managed it to start but it wouldnt let me register as theres not https certificate.

View original on lemmy.world
de_edv·de_EDVbyLobotomie

Vaultwarden über Compose mit vorhandenen Zertifikaten

Hallo Freunde,

also ich habe einen kleinen Ubuntu Server und möchte nun endlich auch Vaultwarden auf diesen Umziehen. Auf dem Server läuft schon ein Certbot über Dehydrated wo ich dann für meine duckdns addresse ein https Zertifikat bekomme (da habe ich das fullchain und privkey .pem zertifikat in einem Ordner und laut uptime Kuma von einem externen Server aus passt alles). Auf Homeassistant komme ich auch mit https.

Wenn ich jetzt mein Vaultwarden starte lädt aber https nicht. Ich denke, dass das Problem daran liegt, dass ich dem Vaultwarden nicht "sagen" kann wo meine https Zertifikate liegen (die liegen halt in irgendeinem unterordner).

folgende Docker Compose datei aktuell:

  vaultwarden:
    container_name: vaultwarden
    image: vaultwarden/server:latest
    restart: unless-stopped
    volumes:
      - /home/vaultwarden:/data/
      - /home/(verzeichnis zu den Zertifikaten):/usr/share/ca-certificates/
    ports:
      - 8129:80
    environment:
      - DOMAIN=https://olafscholzprivat.duckdns.org
      - LOGIN_RATELIMIT_MAX_BURST=10
      - LOGIN_RATELIMIT_SECONDS=60
      - ADMIN_RATELIMIT_MAX_BURST=10
      - ADMIN_RATELIMIT_SECONDS=60
      - ADMIN_TOKEN=token
      - SENDS_ALLOWED=true
      - EMERGENCY_ACCESS_ALLOWED=true
      - WEB_VAULT_ENABLED=true
      - SIGNUPS_ALLOWED=true

könnt ihr mir sagen was ich falsch mache? Wenn ich jetzt den Port im Browser lade kommt nur Fehler: Netzwerk-Zeitüberschreitung

View original on lemmy.world
de_edv·de_EDVbyLobotomie

seriellen USB Ports für 2 Programme verfügbar machen?

Hallo Freunde, Ich habe ein älteres messinstrument (kein Radio oder gps) mit einem seriellen USB Port. Nun möchte ich mit 2 Programmen auf den Port zugreifen können (gleichzeitig). Also z.b. com7 ist das Gerät und com8+com9 für die 2 Programme dann

Geht das mit com0com oder brauche ich da kostenpflichtige Software?

Mit com0com hat es zumindest nicht auf Anhieb geklappt und ich finde wenig Infos was machen

Danke :)

View original on lemmy.world
de_edv·de_EDVbyLobotomie

lokale Addressen mit richtiger Domain versehen

Hallo Freunde,

Angenommen ich habe Domain Pizzasebastian.de und mehrere Dienste auf meinem Server (192.168.178.69) auf Port 2000 - 2010 laufen. Kann ich das irgendwie so verknüpfen dass Ich z.b. folgendes habe: Dienst1.pizzasebastian.de -> 192.168.178.69:2002 Dienst2.pizzasebastian.de -> 192.168.178.69:2005

(Ohne das nur stumpf weitergeleitet wird, im Browser sollte schon die Domain stehen)

Die Addresse sollte aber auch nur aus dem Netz erreichbar sein, also ich möchte kein Port dafür öffnen (oder ähnliches)

View original on lemmy.world
de_edv·de_EDVbyLobotomie

postgresql -> pdf Erstellung

Hallo Freunde,

Ich möchte in irgendeiner UI (Web basiert) eine PDF aus einer PostgreSQL Datenbank erstellen. Ich will im Browser eine bestimmte Zeile einer tabelle auswählen können (also z.b. 12) und dann auf einen Knopf drücken "pdf erstellen" und in einem neuen Tab geht dann eine PDF auf mit den Infos aus der Tabelle. Die PDF besteht nicht nur aus Inhalten aus der Datenbank sondern auch aus fixen Informationen (also z.b. Text, Bildern).

Habt ihr da Ideen? Ich habe es schon über nodered versucht aber ich habe nicht genug Ahnung von JS/HTML um sowas zu machen. (Obwohl ich schon viel anderes in nodered realisiert habe aber mit dem Thema hab ich einfach garkeine ahnung)

View original on lemmy.world

You reached the end