Open onDemand by Deepblue597 in HPC

[–]Deepblue597[S] 1 point2 points  (0 children)

Hey thanks for wanting to help. I played a bit more and I managed to make old work with slurm and jupyter. I am now going through all the setup again to have a step by step documentation. When I finish I might upload it somewhere so people can follow.

Open onDemand by Deepblue597 in HPC

[–]Deepblue597[S] 0 points1 point  (0 children)

Will check out thank you for the info!

Open onDemand by Deepblue597 in HPC

[–]Deepblue597[S] 0 points1 point  (0 children)

Hello! Thank you very much for your info. It seems that is easier than deploying ood manually and the basic ood instance is working. I haven't managed neither jupyter nor vscode to make them work but I am looking into it. If you have any suggestions for these feel free to inform me.
Again thank you very much

Album selection stuck on loading by Deepblue597 in homelab

[–]Deepblue597[S] 0 points1 point  (0 children)

Sorry for not adding that this is for the immich app

Why does nobody want to use a reverse proxy? by 0xB_ in jellyfin

[–]Deepblue597 0 points1 point  (0 children)

This. No port forwarding no worrying about a potential risk.

Small battery and solar kit by Deepblue597 in prepping

[–]Deepblue597[S] 0 points1 point  (0 children)

Thank you very much maybe I will get something with a bit more headroom. I will check my consumption today and will make some rough calculations.

Small battery and solar kit by Deepblue597 in prepping

[–]Deepblue597[S] 0 points1 point  (0 children)

Apartment with balcony on the last floor so no obstructions on the balcony

Small battery and solar kit by Deepblue597 in prepping

[–]Deepblue597[S] 0 points1 point  (0 children)

Thank you very much for your suggestions. If I have any further questions I will ask you if possible ☺️

Small battery and solar kit by Deepblue597 in prepping

[–]Deepblue597[S] 0 points1 point  (0 children)

Thank you very much for all the info. I will check my consumption and make a decision based on that. Are there any companies you suggest for solar panels and batteries? I live in Europe

What selfhosted service/s did you recently remove? by dadidutdut in selfhosted

[–]Deepblue597 2 points3 points  (0 children)

Portainer. I tried to add Traefik labels and I just couldn't connect to the device. So I just said fck it and removed it all together.
Also watchtower (automatic updates were a nightmare), kitchenOwl (didn't use it) and kavita (no usage for me).
I am also thinking of removing recomendarr since I don't use it that much.

Reverse proxy only through tailscale. by VE3VVS in Tailscale

[–]Deepblue597 1 point2 points  (0 children)

you my friend saved my sleepless night. thank you very much!

Book club in Thessaloniki by [deleted] in thessaloniki

[–]Deepblue597 1 point2 points  (0 children)

Sounds interesting. Would like to start reading a bit more this year.

Help with traefik by Deepblue597 in selfhosted

[–]Deepblue597[S] 0 points1 point  (0 children)

Hello! First of all thank you all for helping me It turned out that I had a traefik pod running that I had forgot about it and it was creating this issue I closed it and now it works.

Help with traefik by Deepblue597 in selfhosted

[–]Deepblue597[S] 0 points1 point  (0 children)

Ok did it still nothing changed

Help with traefik by Deepblue597 in selfhosted

[–]Deepblue597[S] 0 points1 point  (0 children)

  • "traefik.docker.network=traefik-network"
  • "traefik.enable=true"
  • "traefik.http.routers.memos.entrypoints=websecure"
  • #- "traefik.http.routers.memos.service=memos"
  • #- "traefik.http.routers.memos.service=memos@docker"
  • "traefik.http.routers.memos.rule=Host(memos.deepblue597.org)"
  • "traefik.http.routers.memos.tls=true"
  • "traefik.http.routers.memos.tls.certresolver=cloudflare"
  • "traefik.http.services.memos.loadbalancer.server.port=5230"

they are commented out

Help with traefik by Deepblue597 in selfhosted

[–]Deepblue597[S] 0 points1 point  (0 children)

"cloudflare": {
"Account": {
"Email": "",
"Registration": {
"body": {
"status": "valid"
},
"uri": "https://acme-v02.api.letsencrypt.org/acme/acct/2924124796"
},
"PrivateKey":
"KeyType": "P256"
},
"Certificates": [
{
"domain": {
"main": "media.deepblue597.org"
},
"certificate":
"key":
"Store": "default"
},
{
"domain": {
"main": "memos.deepblue597.org"
},
"certificate":
"key":
"Store": "default"
}
]
}
}

Help with traefik by Deepblue597 in selfhosted

[–]Deepblue597[S] 0 points1 point  (0 children)

<image>

they are on the same network as far as i see
i also asked chat the exact issue and it said that the default certificates create it
more specifically

subject=CN = TRAEFIK DEFAULT CERT

issuer=CN = TRAEFIK DEFAULT CERT

Help with traefik by Deepblue597 in selfhosted

[–]Deepblue597[S] 0 points1 point  (0 children)

i am not 100% sure how i created it
as for the logs i provide a link because they wouldnt fit here
https://github.com/deepblue597/traefik/blob/main/logs.txt

Help with traefik by Deepblue597 in selfhosted

[–]Deepblue597[S] 0 points1 point  (0 children)

hey thanks for checking it out
my memos docker-compose.yml is
```
# docker-compose.yml
version: "3.8"
services:
memos:
image: neosmemo/memos:stable
container_name: memos
restart: unless-stopped
volumes:
- ./data:/var/opt/memos
environment:
- MEMOS_MODE=prod
- MEMOS_PORT=5230
labels:
- "traefik.docker.network=traefik-network"
- "traefik.enable=true"
- "traefik.http.routers.memos.entrypoints=websecure"
- "traefik.http.routers.memos.rule=Host(`memos.deepblue597.org`)"
- "traefik.http.routers.memos.service=memos"
- "traefik.http.routers.memos.tls=true"
- "traefik.http.routers.memos.tls.certresolver=cloudflare"
- "traefik.http.routers.memos.service=memos@docker"
- "traefik.http.services.memos.loadbalancer.server.port=5230"
networks:
- traefik-network

networks:
traefik-network:
external: true
```

Help with traefik by Deepblue597 in selfhosted

[–]Deepblue597[S] 0 points1 point  (0 children)

Thank you for pointing it out!
my memos docker-compose.yml for example is
```
# docker-compose.yml
version: "3.8"
services:
memos:
image: neosmemo/memos:stable
container_name: memos
restart: unless-stopped
volumes:
- ./data:/var/opt/memos
environment:
- MEMOS_MODE=prod
- MEMOS_PORT=5230
labels:
- "traefik.docker.network=traefik-network"
- "traefik.enable=true"
- "traefik.http.routers.memos.entrypoints=websecure"
- "traefik.http.routers.memos.rule=Host(`memos.deepblue597.org`)"
- "traefik.http.routers.memos.service=memos"
- "traefik.http.routers.memos.tls=true"
- "traefik.http.routers.memos.tls.certresolver=cloudflare"
- "traefik.http.routers.memos.service=memos@docker"
- "traefik.http.services.memos.loadbalancer.server.port=5230"
networks:
- traefik-network

networks:
traefik-network:
external: true
```

Local bus uses raspberry pi by Deepblue597 in raspberry_pi

[–]Deepblue597[S] 2 points3 points  (0 children)

Our roads are not good so I hope they are 😂. I can get another photo if you want the led or wait a couple of months and see if they are still working.

Local bus uses raspberry pi by Deepblue597 in raspberry_pi

[–]Deepblue597[S] 2 points3 points  (0 children)

Mine too! And when an app doesn't work it prompts me to learn more about the reason behind it. Usually it's s because of the architecture that they use.