Giddy
My son is trans which makes me… transparent
- 4 Posts
- 40 Comments
Wow I am not in your league
I am currently migrating from a dedicated docker host to a proxmox host with multiple LXC containers.
old host - 23 docker containers, 128GB system drive, 4TB data drive
backup server - 1 docker container, 1TB disk
proxmox - 3 LXC containers, one of which has 3 docker containers. 500GB system drive, 4TB media drive (not LVM)
The plan is to migrate the loads on the old host to the proxmox host. I also have another 4TB drive coming with the intent of setting up a RAID with 2 of the 4TB drives.
Sorry just re-read your post. So the router they supplied does not have this setting? What make and model is it?
Do you have a modem? You should be able to configure port forwarding in that
Giddy@aussie.zoneOPto
Selfhosted@lemmy.world•Best free/cheap web host for DIY emailEnglish
1·3 years agoInteresting. I might be able to go back to hosting on my server for inbound only. Thanks for the tip
Giddy@aussie.zoneOPto
Selfhosted@lemmy.world•Best free/cheap web host for DIY emailEnglish
2·3 years agoYeah that is my current mail provider but the self hosting bug bites deep
nice work! I had given up on getting FF sync running. I used xBrowserSync for a while but that has no iOS support so am currently using Linkding. I will give this a shot :-)
Giddy@aussie.zoneOPto
Selfhosted@lemmy.world•Pi.Alert picking up Docker networks and containers hosted on same serverEnglish
2·3 years agoHas anyone tried the docker variant of pi.alert? I presume that one must be smart enough to filter out docker ‘devices’
Giddy@aussie.zoneOPto
Selfhosted@lemmy.world•Pi.Alert picking up Docker networks and containers hosted on same serverEnglish
2·3 years agoAfter adding about 20 MAC addresses I gave up and just moved pi.alert to my secondary dns server (a pi zero) which has no docker
Giddy@aussie.zoneOPto
Selfhosted@lemmy.world•Pi.Alert picking up Docker networks and containers hosted on same serverEnglish
1·3 years agoYeah i tried setting my subnet to 192.168.3.0/24 (the one used by my intranet) but they still show up
Giddy@aussie.zoneto
Selfhosted@lemmy.world•Vaultwarden using Docker Compose with existing CertificatesEnglish
1·3 years agoI use Nginx Proxy Manager to reverse proxy all my services including Vaultwarden -
Setup in NPM -
Open Nginx Proxy Manager Admin Portal Click Proxy Hosts Click Add Proxy Host Fill in the details Details tab Domain Names - vault.your.domain Scheme - http Forward Hostname/IP - vaultwarden (this should be the name of your vw container) Forward Port - 80 Tick Block Common Exploits Tick Websockets Support Access List - Publicly Accessible Custom locations tab Add the following locations location 1 location - /notifications/hub Scheme - http Forward Hostname/IP - vaultwarden Forward Port - 3012 Click the cog symbol and add the following to the textbox that appears proxy_set_header Upgrade $http_upgrade; proxy_set_header Connection "upgrade"; proxy_set_header X-Real-IP $remote_addr; location 2 location - /notifications/hub/negotiate Scheme - http Forward Hostname/IP - vaultwarden Forward Port - 80 Click the cog symbol and add the following to the textbox that appears proxy_set_header Host $host; proxy_set_header X-Real-IP $remote_addr; proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for; proxy_set_header X-Forwarded-Proto $scheme; location 3 location - / Scheme - http Forward Hostname/IP - vaultwarden Forward Port - 80 Click the cog symbol and add the following to the textbox that appears proxy_set_header Host $host; proxy_set_header X-Real-IP $remote_addr; proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for; proxy_set_header X-Forwarded-Proto $scheme; SSL tab SSL Certificate - Request a new SSL Certificate tick Use a DNS Challenge (or just expose port 80 if you accept the risk) DNS Provider - Dynu (this is my dyndns provider) Credentials File Content - replace YOUR_DYNU_AUTH_TOKEN with the API key from https://www.dynu.com/en-US/ControlPanel/APICredentials Email Address for Let's Encrypt - your email Tick I Agree to the Let's Encrypt Terms of Service Click Save Vaultwarden should now be accessible via https://vault.your.domain
Giddy@aussie.zoneto
Selfhosted@lemmy.world•just to be sure, when setting up nextcould i need to purchase a domain name?English
5·3 years agoPlenty of free hostname providers. I use Dynu
That is better than my NUC and I have no performance issues
How is NC using redis? I can’t see any links from the NC container
Can I ask why the separate NC container for cron? Also, I presume the mysqldump container is for easy db backups?
No you can use other databases. It is separate here
Giddy@aussie.zoneto
Selfhosted@lemmy.world•SOLVED: Self Hosting Bitwarden, STMP IssuesEnglish
4·3 years ago+1 for Vaultwarden. Much simpler to set up
I seriously suggest you give Nextcloud another go, this time under Docker. Very simple to do.
Save the following in a new folder as docker-compose.yml
version: '3' volumes: db: services: nextcloud-app: image: nextcloud container_name: nextcloud-app restart: always volumes: - ./data:/var/www/html environment: - MYSQL_PASSWORD=changeme - MYSQL_DATABASE=nextcloud - MYSQL_USER=nextcloud - MYSQL_HOST=nextcloud-db ports: - "80:80" links: - nextcloud-db nextcloud-db: image: mariadb container_name: nextcloud-db restart: always command: --transaction-isolation=READ-COMMITTED --binlog-format=ROW volumes: - db:/var/lib/mysql environment: - MYSQL_ROOT_PASSWORD=changeme - MYSQL_PASSWORD=changeme - MYSQL_DATABASE=nextcloud - MYSQL_USER=nextcloudrun this command in the folder -
docker-compose up -dopen http://localhost
I’m using Tooot for Mastodon on my ipad

I use calibre to manage my collection. Calibre creates a folder per author and a sub-folder per book. I also have separate Calibre libraries for fiction, non-fiction and comics.