Edo78

joined 2 years ago
[–] Edo78@feddit.it 3 points 2 years ago

So we have to help youtube reporting the other channels

[–] Edo78@feddit.it 1 points 2 years ago (1 children)

On top of my head there are 2 ways to do it:

  • using a change node with JSONata so that you can just put the input payload in a JSON template
  • if you'll need complex transformation you can use a function node and use plain JS to create an object to return
[–] Edo78@feddit.it 3 points 2 years ago

I'm incline to say that there's no way. I order to have secure payments you have to secure each and every step of the process. Without a big corporation under those steps no one in his right mind will gamble with payments

[–] Edo78@feddit.it 1 points 2 years ago

I'd like to check grocy because it looks really promising even if a bit overkill if you want only a cookbook.

[–] Edo78@feddit.it 1 points 2 years ago (1 children)

Big PWA fan here but I wasn't aware that safari on ios is now supporting push notification (not an apple user). Do you have any link about it?

[–] Edo78@feddit.it 0 points 2 years ago

and, even if you scan them, how do you know that a port knocker isn't there waiting to the secret knock?

[–] Edo78@feddit.it 1 points 2 years ago

Interesting. I did a test and I was able to find a post from another instance but maybe it was already known on my instance ... Not sure, sorry

[–] Edo78@feddit.it 2 points 2 years ago

the article say some bullshit ... "platforms will be required to verify the ages of all minors" ok, fine ... but wait ... how can they do that??? Do they have to asks for every users worldwide their documents? And suspend any users that doesn't prove he's not a minor from one of those states?

[–] Edo78@feddit.it 0 points 2 years ago (2 children)

just copy and past the url of the post from the other instance in the search of the instance you are logged in

[–] Edo78@feddit.it 1 points 2 years ago (1 children)

I just use dockerized service and I plan to move to k8s so I don't have (nor plan to) deal with anything besides dockerized services

[–] Edo78@feddit.it 2 points 2 years ago

Well, this way it works great for my needs ... If I don't need a service anymore I just remove its docker-compose and puff it's gone the service and the reverse proxy config all in one single atomic thanos-like snap of fingers I wasn't able to find a way to do the same with Caddy and I don't get what do you mean with "moving parts"

[–] Edo78@feddit.it 4 points 2 years ago (8 children)

It's interesting how different people have different approaches ... I migrate from Caddy to Traefik because I found it magical ... Whenever I need to add another selfhosted service I just adapt a docker-compose like this one

version: '3.8'

services:
  homeassistant:
    container_name: homeassistant
    image: ghcr.io/home-assistant/home-assistant:stable
    #image: homeassistant/raspberrypi4-homeassistant:stable
    volumes:
      - ./media/:/media
      - ./config/:/config
      - /etc/localtime:/etc/localtime:ro
    environment:
      - TZ=${TZ}
    restart: unless-stopped
    networks:
      - t2_proxy
      - backend
    labels:
      - traefik.enable=true
      - traefik.docker.network=t2_proxy
      - traefik.http.routers.homeassistant.rule=Host(`home.mydomain.bla.bla`)
      - traefik.http.routers.homeassistant.entrypoints=websecure
      - traefik.http.routers.homeassistant.tls.certresolver=myresolver
      - traefik.http.services.homeassistant.loadbalancer.server.port=8123

networks:
  backend:
    external: true
  t2_proxy:
    external: true

As you can see I just need to change the host and the port in the labels to have a new domain pointing to the right port ... I wasn't able to find an easier way to add a new service to caddy

view more: ‹ prev next ›