[-] Lobotomie@lemmy.world 15 points 3 months ago* (last edited 3 months ago)

Right now im looking for an alternative to the Google Maps Timeline. I know there is OwnTracks but I dont think that everything has to be hosted on a server somewhere (especially when all its saving is a timestamp and a coordinate, its not like that takes up alot of space)

Basically just your own location tracker and then the option to see your own history displayed in a map e.g. where you have been on the 02.july.2019 at 11:50.

[-] Lobotomie@lemmy.world 42 points 6 months ago

I have to say that I absolutely love the title this man chose to share his anger.

[-] Lobotomie@lemmy.world 9 points 7 months ago

Can someone share some information on the actual steel they use? This linkedin thread says they use 301, someone in this thread says they use a proprietary steel? (Can someone share the chemical analysis in this case?)

https://www.linkedin.com/pulse/why-tesla-cybertruck-uses-301-stainless-steel-zhong-chen-ph-d-

30

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.

[-] Lobotomie@lemmy.world 24 points 10 months ago

Fuck chamberlain so much. We have Gates from them which were (wrongly) opened by hand. Inside of the swing arm was only a broken plastic clutch which could easily be changed to a new one. But chamberlain will not sell any spare parts whatsoever. We tried 3d printing the part but I didn't manage to draw the teeth 1:1 so Motor load was higher than the controller allowed and stopped it.

Fuck chamberlain

[-] Lobotomie@lemmy.world 2 points 10 months ago

Naja aber in Australien gibt's auch keine sperrklausel oder?

[-] Lobotomie@lemmy.world 6 points 10 months ago

Hier in Deutschland gibt es mehrere Kleinparteien, die den Namen ihres Gründers tragen. Die taugen alle nichts, und im schlimmsten Fall sind sie sogar undemokratisch, weil der Gründer und Namensgeber übermäßige Macht in der Partei hat.

[-] Lobotomie@lemmy.world 21 points 10 months ago

Yeah, like taliban?

[-] Lobotomie@lemmy.world 16 points 10 months ago

Who says this has to be done in a day? Have gun drop off places which keeps lists, destroy the guns (weld the muzzle or drill in a hole both can be done in 2minutes for a single gun) and then sell them to scrapyards. People have time until the end of 2024.

[-] Lobotomie@lemmy.world 10 points 10 months ago

90% of people can charge their car enough in between Shopping trips

[-] Lobotomie@lemmy.world 3 points 11 months ago

So basically thin Client + coral tpu with frigate and then homeassistant Integration? How should I Set up the connection to the cameras? Onvif?

18

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.

[-] Lobotomie@lemmy.world 11 points 11 months ago

No in my opinion its worse in every way

24
submitted 1 year ago* (last edited 1 year ago) by Lobotomie@lemmy.world to c/selfhosted@lemmy.world

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.

[-] Lobotomie@lemmy.world 18 points 1 year ago

Yes because homosexuals could just leave their gay in their car amirite

view more: next ›

Lobotomie

joined 1 year ago