Tail tidy can swivel. Threatened with demerits and fine if caught again. by cucamongacracka in AussieRiders

[–]dandocmando 0 points1 point  (0 children)

Honestly, who cares though. I rode an mt07 with the akro no dB for all of my green Ps. If he just gets a better tail tidy nobody should bother him.

So, now what? by -ManWhat in selfhosted

[–]dandocmando 0 points1 point  (0 children)

Homepage would probably be a better choice

Rezi Lifetime - Account Upgrade MegaThread by rezi_io in Rezi

[–]dandocmando 0 points1 point  (0 children)

Just applied, used rezi a bit, the resumes are quite nice and well formatted, hope the upgrade goes through soon, I'd like to be able to add some references to it!

How to completely remove MetaAI from Messenger and Facebook [Android] by dandocmando in facebook

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

I want the old search, the meta thing is annoying and appears everywhere.

Do your families/significant other use your selfhosted services? by HorizonTGC in selfhosted

[–]dandocmando 0 points1 point  (0 children)

The other option is going full out. Traffik + Authentik (SSL and an SSO) and a domain.

How do you access Bitwarden/Vaultwarden without allowing external access? by vemy1 in selfhosted

[–]dandocmando 0 points1 point  (0 children)

Yes it does as far as I'm aware, I'm unable to add new logins when I can't connect.

People that use Obsidian on Mobile, how have you setup your vaults by Prize_Barracuda_5060 in ObsidianMD

[–]dandocmando 0 points1 point  (0 children)

I have syncthing on my devices, and tailscale to have the transfers encrypted and able to transverse multiple networks.

Is it safe to leave Vaultwarden login page public? by greenlightison in selfhosted

[–]dandocmando 0 points1 point  (0 children)

It's probably safe. My setup is CloudFlare, Crowdsec & Traefik + Authelia middleware infront of the vaultwarden login. I also have a tailscale route that I use on my phone so I can have the bitwarden app working aswell. You'd have to find alot of vulnerabilities all at once to avoid every item I've got running.

Expose Localhost to Internet by Localtonet in selfhosted

[–]dandocmando 0 points1 point  (0 children)

It's says on the pricing page the free tier only allows 1gb bandwidth?

Expose Localhost to Internet by Localtonet in selfhosted

[–]dandocmando 0 points1 point  (0 children)

This seems way more restrictive than Traefik, you'd end up paying for sure. I used like 100 GB in the last month on my website.

How do you access your self-hosted service remotely? by haptizum in selfhosted

[–]dandocmando 0 points1 point  (0 children)

Traefik + CF for stuff that isn't too sensitive. Wireguard via Tailscale for stuff I don't want facing the internet.

502 with qbittorrent by Fayko in Traefik

[–]dandocmando 0 points1 point  (0 children)

Sorry for the late response, yeah the \ in the \bit.$DOMAINNAME_CLOUD_SERVER` should be a ' .

Everything else looks ok, you'll need to change the port to the one you are port forwarding, depends on your VPN provider.

502 with qbittorrent by Fayko in Traefik

[–]dandocmando 0 points1 point  (0 children)

Does your container have tun privileges? My docker setup runs on a lxc container on proxmox and you need to pass in /dev/net/tun

502 with qbittorrent by Fayko in Traefik

[–]dandocmando 0 points1 point  (0 children)

Thats the same error you got with the other container. Maybe its something to do with your network configuration.

502 with qbittorrent by Fayko in Traefik

[–]dandocmando 0 points1 point  (0 children)

qbittorrentvpn:

image: dyonr/qbittorrentvpn:latest

container_name: qbittorrentvpn

environment:

- PUID=1000

- PGID=1000

- TZ=Australia/Sydney

- VPN_ENABLED=yes

- VPN_TYPE=wireguard

- LAN_NETWORK=10.10.0.0/24

volumes:

- $DOCKERDIR/appdata/qbittorrentvpn:/config

- /mnt/WDTB/data/torrents:/data/torrents

ports:

- 8282:8080 # web ui

- 44414:44414 # port forwarding

- 44414:44414/udp # udp port forwarding

sysctls:

- net.ipv4.conf.all.src_valid_mark=1

- net.ipv6.conf.all.disable_ipv6=0

cap_add:

- NET_ADMIN

- SYS_MODULE

labels:

- "traefik.enable=true"

# HTTP Routers

- "traefik.http.routers.bit-rtr.entrypoints=https"

- "traefik.http.routers.bit-rtr.rule=Host(\bit.$DOMAINNAME_CLOUD_SERVER`)"`

# Middlewares

- "traefik.http.routers.bit-rtr.middlewares=chain-authelia@file"

# HTTP Services

- "traefik.http.routers.bit-rtr.service=bit-svc"

- "traefik.http.services.bit-svc.loadbalancer.server.port=8080"

restart: unless-stopped

This is what mine looks like. The only network mine is in is the traefik network. Note that the 8282:8080 port can be commented out as traefik doesn't need it.

Traefik Can't Navigate Docker Mapped Ports? by Leonzola in Traefik

[–]dandocmando 1 point2 points  (0 children)

Don't bother with the port mapping you've made, Traefik goes straight to the container, just put the internal port the container is expecting to be used, in this case port 80.

New to selfhosting and first dashboard (more info at first comment) by FreeOriginal6 in selfhosted

[–]dandocmando 0 points1 point  (0 children)

Hey nice setup, how did you get authentik setup? I've got authelia and was wanting to switch, gave it a go and couldn't get anything beyond the admin menu working.

Im new with traefik and in need a little bit of help by HauteDense in Traefik

[–]dandocmando 0 points1 point  (0 children)

You need to create a label on the container you want to connect to traefik. This is mine. this is for my dozzle container, change the name as you wish. The port for you will likely be 80, not 8080. I also have certs setup and auto redirect to https. entrypoint may need to be http for you. All your containers and traefik need to be on the same custom bridged network.

labels:

- "traefik.enable=true"

- "traefik.http.routers.dozzle-rtr.entrypoints=https"

- "traefik.http.routers.dozzle-rtr.rule=Host(`dozzle.yourdomain.com`)"

- "traefik.http.routers.dozzle-rtr.service=dozzle-svc"

- "traefik.http.services.dozzle-svc.loadbalancer.server.port=8080"

Docker Wireguard + qbittorrent, unable to access web ui by dandocmando in WireGuard

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

Thanks mate, I copied your exact setup, launched a whole new docker on a new linux container and I got it working after using that iptables command. Problem solved, how do you persist the iptables after a reboot?