Comment on
Heat Pump: 2790
Reply in thread
They're not only for heating though, they can cool as well.
I guess I interpreted the comic backward; they're heating the room not cooling it.
Comment on
Heat Pump: 2790
Reply in thread
They're not only for heating though, they can cool as well.
I guess I interpreted the comic backward; they're heating the room not cooling it.
Comment on
What do you use for photo backups?
Reply in thread
Another vote for Immich. It does a good job.
Comment on
Heat Pump: 2790
Isn't that a bit backward? Compress in the cooler area, radiate heat, bring it inside and expand, absorb heat, then carry it outside.
Comment on
What do you use for outgoing smtp?
I set up a smtp relay with gsuite for outgoing mail but don't think it is ideal; it is tied to my user. It was just expedient rather than preferred.
Totally looking forward to the answers here.
Comment on
How is everyone installing Lemmy?
Kubernetes
Comment on
Favorite US based VPS?
DigitalOcean is solid and cheap.
Comment on
What do you use for outgoing smtp?
Reply in thread
With my one user gsuite I setup a secondary domain in it so lemmy sends from [email protected], not my main address, but lemmy still authenticates using my main address.
Comment on
OpenVPN network interface for qBittorrent
I know of a similar setup. Arr stack with qBittorrent and VPN on kubernetes. A bit different than yours in that the arr+qBit+VPN run in the same namespace. Here's how:
---
apiVersion: networking.k8s.io/v1
kind: Ingress
metadata:
name: qbittorrent-ingress
namespace: arr
spec:
ingressClassName: nginx
rules:
- host: your.ho.st
http:
paths:
- path: /
pathType: Prefix
backend:
service:
name: qbittorrent
port:
number: 8080
---
kind: Service
apiVersion: v1
metadata:
name: qbittorrent
namespace: arr
spec:
selector:
app: qbittorrent
ports:
- protocol: TCP
port: 8080
targetPort: 8080
---
apiVersion: v1
kind: PersistentVolumeClaim
metadata:
name: qbittorrent
namespace: arr
spec:
storageClassName: zfs
accessModes:
- ReadWriteMany
resources:
requests:
storage: 1Ti
---
apiVersion: apps/v1
kind: Deployment
metadata:
namespace: arr
name: qbittorrent
spec:
replicas: 1
selector:
matchLabels:
app: qbittorrent
strategy:
type: Recreate
template:
metadata:
labels:
app: qbittorrent
spec:
containers:
- name: qbittorrent
image: linuxserver/qbittorrent
imagePullPolicy: Always
volumeMounts:
- mountPath: "/config"
name: "volume"
- mountPath: "/media"
name: "media"
env:
- name: PUID
value: "1000"
- name: PGID
value: "1000"
- name: TZ
value: "Etc/UTC"
ports:
- containerPort: 8080
- name: gluetun
image: qmcgaw/gluetun
imagePullPolicy: Always
securityContext:
capabilities:
add: ["NET_ADMIN"]
volumeMounts:
- mountPath: /dev/net/tun
name: tun
env:
- name: VPN_SERVICE_PROVIDER
value: "mullvad"
- name: VPN_TYPE
value: "wireguard"
- name: WIREGUARD_PRIVATE_KEY
value: "removed"
- name: WIREGUARD_ADDRESSES
value: "removed"
- name: SERVER_CITIES
value: "removed"
- name: FIREWALL_INPUT_PORTS
value: "8080"
- name: TZ
value: "Etc/UTC"
restartPolicy: Always
volumes:
- name: volume
persistentVolumeClaim:
claimName: qbittorrent
- name: media
nfs:
server: nfs.server.local
path: /media
- name: tun
hostPath:
path: /dev/net/tun
The relevant bit of the qBittorrent.conf:
[BitTorrent]
Session\Interface=tun0
Session\InterfaceName=tun0
Best of luck!