Ahh, there it is. Linux user confirmed. :D
Ahh, there it is. Linux user confirmed. :D
Same! I liken it to a knock off version of Mongolian Throat singing.
Two users and a handful of service accounts. I use it so I have a centralized user authentication system instead of managing multiple individual user accounts.
I tried a couple of LDAP solutions out there; Windows Server AD, Open LDAP, Samba4 in Debian, TurnKey Solutions LDAP before finally settling on Zentyal. It has a nice to use web GUI and can work in conjunction with AD RSAT tools that I have installed in a throwaway Windows VM for when I need more granular controls the web GUI can’t do.
All my Debian VM’s and laptops connect to Zentyal AD via SSSD.
I just cannot find a use case for Nextcloud. I have gone as far as installing it and sync’ing it with my LDAP for user auth and sync pictures from my phone to my NAS. All the other features are just a big ole m’eh for me.
This has just been my experience, so maybe I’m missing something that would just make it all click and make me not live without it. So far though, I’ve spun up and spun down an instance 3 times and never missed it afterwards.
Well that’s never a bad thing and no reason anyone should worry about a data leak. /s
Zabbix for agent / snmp based statistics.
Uptime Kuma for up/down states with a webhook notification into Discord so I get instant alerts on my phone when one goes down.
I used to listen to them all the time.before the move to Spotify. Once they came out from behind Spotify and I could get them in my preferred app, I just couldn’t get back in the grove of listening to them. It seemed like for every 5 of their releases, I would find one interesting.
Don’t let this stop anyone else from listening to them as they research the shit out of their topics. Their Jim Jones episodes were more informative than any other description I have ever heard.
I have also noticed it seems harder to find stuff on Google now. My pet theory is that it is the building in of AI to search (Bing Chat anyone?) that is affecting Google search results. Lately, I have been going to Bard & ChatGPT to do searches but treat it more as a jumping off point to help point the direction of where or how to search.
Not perfect, but just a method I’ve been playing with for the past month off & on.
That’s an error on my part, apologies. I copy/pasted and tried to redact my url from the APP_URL=https://bookstack.example.com section and ended up deleting the entire line; yay replying from mobile. :|
I currently use Bookstack on Docker in Unraid but the above docker compose snippet is from when I used a debian VM with docker installed on it to run my docker stacks.
Here you go, this is my docker compose. You can modify the pieces as you see fit.
version: ‘3’ services:
bookstack:
image: lscr.io/linuxserver/bookstack
container_name: bookstack
environment:
- PUID=${PUID}
- PGID=${PGID}
- APP_URL=
- DB_HOST=bookstack_db
- DB_USER=bookstack
- DB_PASSWORD=${BS_DB_PASS}
- DB_DATABASE=bookstackapp
volumes:
- ${DATA_DIR}/bookstack:/config
ports:
- 6875:80
restart: unless-stopped
depends_on:
- bookstack_db
bookstack_db:
image: lscr.io/linuxserver/mariadb
container_name: bookstack_db
environment:
- PUID=${PUID}
- PGID=${PGID}
- MYSQL_ROOT_PASSWORD=${BS_DB_PASS}
- TZ=${TIMEZONE}
- MYSQL_DATABASE=bookstackapp
- MYSQL_USER=bookstack
- MYSQL_PASSWORD=${BS_DB_PASS}
volumes:
- ${DATA_DIR}/bookstack/mariadb:/config
restart: unless-stopped
I’ve been running OPNsense as a VM in Proxmox for a year on an AliExpress box that doesn’t have ECC. If I might ask, why do you have a requirement for ECC?
Before this box, I ran a Dell R230 with pfSense but got tired of the noise and 40 watt power draw.
I’ve had zero issues without ECC, so I’m just curious about your need for it.