Deemo

joined 1 year ago
[–] Deemo@bookwormstory.social 2 points 2 days ago

Thanks for the tip

[–] Deemo@bookwormstory.social 1 points 3 days ago

I should elaborate. I want to switch from caddy to authentiks internal reverse proxy. By default authentik uses ports 9000 and 90443 and you have the option to change them to 80 and 443 via docker compose.

Using host mode throws a wrench in the ports and authentik is made of more than one container.

 

Hi guys quick question say you run a a application on your localhost (example lets say couchdb runing directly on localhost:3434 not in docker).

Now you have a docker container (say caddy, ngnix, etc). Is there a way to allow docker container to acess localhost:3434 WITHOUT using the Host network driver (--net=host)

[–] Deemo@bookwormstory.social 1 points 1 week ago (2 children)

Does whois privacy work for .eu?

[–] Deemo@bookwormstory.social 4 points 1 week ago (4 children)

I do own a cheap numerical xyz domain (something like 432433.xyz) cost a dollar per year. Only reason I was curious about eu.org is its very short and ends with .org.

I haven't really bought a proper .com domain since I'm just using them for side hobby projects (not for sharing with other people).

[–] Deemo@bookwormstory.social 4 points 1 week ago

Thanks for the clarification

 

Hi guys I recently stumbled upon this website where you can get a eu.org sub domain (example.eu.org for instance).

I noticed though that domains aren't created instantly. I'm curious if there is human review to get domians processed and if it generally takes a long time to make domains using them.

[–] Deemo@bookwormstory.social 4 points 2 weeks ago (2 children)

I do wish there were more services like nebula one yearly fee no baked in ads or ads at all and more creators are willing to join them.

The thing that sucks with youtube premium is you still have creators dumping 1 min long sponsors ruining the experience. Additionally often only way these creators allow you to go add free is via patreon, floatplane, etc which can get quite expensive if you follow 30-50 channels. The only other viable route is sponsorblock which works great but requires modified youtube clients/browser extensions and with youtubes new video adinjection could potentially be broken.

The only part I do wonder with nebula is how well it works for larger creators.

Linus Media group revenue break down

https://youtu.be/-zt57TWkTF4?t=532

[–] Deemo@bookwormstory.social 1 points 3 weeks ago

Again thanks for taking the time to help and explain this to me

[–] Deemo@bookwormstory.social 1 points 3 weeks ago* (last edited 3 weeks ago) (3 children)

"origin=cloudsmith/caddy/stable";

Unable to parse Unattended-Upgrade::Allowed-Origins. An error occurred: not enough values to unpack (expected 2, got 1)


// Automatically upgrade packages from these (origin:archive) pairs
//
// Note that in Ubuntu security updates may pull in new dependencies
// from non-security sources (e.g. chromium). By allowing the release
// pocket these get automatically pulled in.
Unattended-Upgrade::Allowed-Origins {
        "${distro_id}:${distro_codename}";
        "${distro_id}:${distro_codename}-security";
        // Extended Security Maintenance; doesn't necessarily exist for
        // every release and this system may not have it installed, but if
        // available, the policy for updates is such that unattended-upgrades
        // should also install from here by default.
        "${distro_id}ESMApps:${distro_codename}-apps-security";
        "${distro_id}ESM:${distro_codename}-infra-security";
        "${distro_id}:${distro_codename}-updates";
//      "${distro_id}:${distro_codename}-proposed";
//      "${distro_id}:${distro_codename}-backports";
        "origin=cloudsmith/caddy/stable";
};
[–] Deemo@bookwormstory.social 1 points 3 weeks ago (5 children)

Firstly thank you so much for explaing this for me.

"origin=Zabbix,codename=${distro_codename}"; //Zabbix Agent repository

I tried using this as a template for caddy

 500 https://dl.cloudsmith.io/public/caddy/stable/deb/debian any-version/main arm64 Packages
     release o=cloudsmith/caddy/stable,a=any-version,n=any-version,l=source=none,c=main,b=arm64
     origin dl.cloudsmith.io

I assume origin is:

o=cloudsmith/caddy/stable

When adding this rule

"origin=cloudsmith/caddy/stable,codename=${distro_codename}"; //Caddy repository

I get this error

Unable to parse Unattended-Upgrade::Allowed-Origins.
An error occurred: not enough values to unpack (expected 2, got 1)
Traceback (most recent call last):

https://pastebin.com/raw/7gtkRw7c

When changing the syntax to:

"cloudsmith/caddy/stable:${distro_codename}"; // Caddy

The error goes away.

Any ideas?

20
unattended upgrades with caddy (bookwormstory.social)
submitted 3 weeks ago* (last edited 3 weeks ago) by Deemo@bookwormstory.social to c/selfhosted@lemmy.world
 

Edit: credit to exu@feditown.com

Assuming you installed caddy via Debian, Ubuntu, Raspbian method

https://caddyserver.com/docs/install#debian-ubuntu-raspbian

add "cloudsmith/caddy/stable:any-version"; to /etc/apt/apt.conf.d/50unattended-upgrades

Example:

// Automatically upgrade packages from these (origin:archive) pairs
//
// Note that in Ubuntu security updates may pull in new dependencies
// from non-security sources (e.g. chromium). By allowing the release
// pocket these get automatically pulled in.
Unattended-Upgrade::Allowed-Origins {
        "${distro_id}:${distro_codename}";
        "${distro_id}:${distro_codename}-security";
        // Extended Security Maintenance; doesn't necessarily exist for
        // every release and this system may not have it installed, but if
        // available, the policy for updates is such that unattended-upgrades
        // should also install from here by default.
        "${distro_id}ESMApps:${distro_codename}-apps-security";
        "${distro_id}ESM:${distro_codename}-infra-security";
        "${distro_id}:${distro_codename}-updates";
//      "${distro_id}:${distro_codename}-proposed";
//      "${distro_id}:${distro_codename}-backports";
        "cloudsmith/caddy/stable:any-version";
};

Link to comment chain (not sure how to add links in a federated way)

https://feditown.com/comment/1221458

https://bookwormstory.social/post/2100056/4136035

Origional post:

Hi guys anyone know how to use un attended upgrades with caddy.

I have ubuntu server 22.0.4.

The part that stumps me is caddy uses a external repository cloud Smith making ot difficult to setup.

I installed caddy via Debian, Ubuntu, Raspbian

https://caddyserver.com/docs/install#debian-ubuntu-raspbian

The closest example I could find to unattended upgrades with a external repo was this example using docker.

/etc/apt/apt.conf.d/50unattended-upgrades

"Docker:${distro_codename}";

https://blog.coffeebeans.at/archives/1299

I'm not sure if it's as simple as

/etc/apt/apt.conf.d/50unattended-upgrades

"Caddy:${distro_codename}";

Edit:

One more question affect would adding

APT::Unattended-Upgrade::Package-Blacklist "";

/etc/apt/apt.conf.d/20auto-upgrades

have?

Edit2:

I just removed this I only found this from google gemini (which probably isn't the best source of info)

APT::Unattended-Upgrade::Package-Blacklist "";
 

Hi guys do you guys know any selfhosted cloud solution that has a combined sync and filestream option?

Context when you use seafile on macos there is seadrive (mounts external cloud like a drive) and seafile sync which syncs files to local folders. The problem is the two clients sort of act seperatly from one other (you cant make seadrive make files offline for instance neither can you preview files in seafile sync).

By contrast onedrive and google drive both have client apps which can sync on demand (file stream) and optionally make files available offline with a simple right click in context menu.

~~Side note I have tried nextcloud on mac but its experimental mount mode just keeps a placeholder .nextcloud file.~~

Edit:

Nextcloud does have proper virtual file sync. Only limitation is you can't make files availble offline via the context menu and instead need to set up manual folder syncs

Edit 2:

You need to grab the release from https://github.com/nextcloud-releases/desktop/releases/tag/v3.13.0

Specifically the vfs version Nextcloud-3.13.0-macOS-vfs.pkg

[–] Deemo@bookwormstory.social 2 points 5 months ago

Will they need social security number (ssn) to set this up?

privacy.com used to offer a similar feature but then a while ago started requiring ssn due to new banking regulation.

If apple doesn't require it I wonder how they where able to sidestep the supposed regulation.

 

Just kinda curious do you guys ever run into issues of lacking imessage (like your friends unwilling to use another app) or is it just a over blown issue.

 

Hi guys anyone know the dofference between Google Play System updates vs OEM security updates?

I currently am using a Oneplus 8 which gets oem security updates from oneplus untill April 2024. After this date how safe would thr device be to use (banking, google pay, etc)?

 

Hi guys out of curiosity does anyone know of a foss, local recorder app that does speech to text?

Closest I've seen is https://voiceinput.futo.org/ which relies on a local open ai whisper model. However unfortunatley this app only works as a keyboard.

https://odysee.com/@rossmanngroup:a/this-gives-google-less-access-to-your:1

 

5
submitted 1 year ago* (last edited 11 months ago) by Deemo@bookwormstory.social to c/voyagerapp@lemmy.world
 

Edit issue self resolved on latest update

Hi guys anyone noticing the chrome pwa haptics aren't working anymore? Weird thing is if voyager is opened directly in chrome haptics work but in pwa it doesn't seem to work.

 

Some useful apps to work around voyagers markdown and image limitations

Instabord is a handy keyboard app that allows you to program shortcuts. I have it set to some common mark down syntax.

Only down side is it's closed source and free version has a 5 key limit then $5 one time purchase. Not sure if there is a fdroid open source equivalent.

https://play.google.com/store/apps/details?id=com.zero.wboard

My config: https://files.catbox.moe/6gc7gn.txt

Another app I found usefull is custom file uploader with catbox moe

https://www.f-droid.org/packages/com.nyx.custom_uploader/

Config:

15
[feature] search comments (bookwormstory.social)
submitted 1 year ago* (last edited 1 year ago) by Deemo@bookwormstory.social to c/voyagerapp@lemmy.world
 

Is it possible to add a search for comments feature when inside a post?

Currently only work around is using the open post link in WebView and using the find in page.

Edit some images of search implemented in apollo and sync:

Apollo:

Sync for Lemmy:

view more: next ›