There have been multiple accounts created with the sole purpose of posting advertisement posts or replies containing unsolicited advertising.

Accounts which solely post advertisements, or persistently post them may be terminated.

kbin.life

meejle , to ukcasual in What icon should we have?
@meejle@lemmy.world avatar

Never forget that the classic video game Lemmings is itself a British creation.

This would be my pitch:

https://lemmy.world/pictrs/image/7a83e962-d5d9-497e-b659-ced784b9fe56.png

Alternate version and transparent PNG___ Still an official™️ Lemmings skin tone, but one from a later game I guess, in the interest of inclusivity: https://lemmy.world/pictrs/image/10839c9c-1813-4070-9de6-f8c939e4f67d.pngTransparent PNG in case anyone wants to remix it: https://lemmy.world/pictrs/image/92183e6a-312c-4f01-9ece-1a9c2b0ea523.png

Easy, relevant banner idea___ Use a screenshot like this one, but decide what they’re queueing for. Greggs? Woolies? Half-price biscuits? The possibilities are endless. https://lemmy.world/pictrs/image/e41a55e1-b5e2-4640-ae16-42ea1d6607ca.png

thegiddystitcher ,
@thegiddystitcher@beehaw.org avatar

Gotta be between this and top hat lemming. Does Lemmy do polls, yet? 🤔

TheCakeWasNoLie , to selfhosted in What are YOU self-hosting?

Mail server, pi-hole, mediawiki, kanboard, Tiny Tiny RSS, Baïkal, Minetest, Transmission, Jellyfin, Filestash and some homebrew.

I use Wireguard to access all that from outside my network. This way, my mail server only exposes smtp.

mr_pip ,
@mr_pip@discuss.tchncs.de avatar
  • whats your opinion on selfhosting mail servers?
  • why have you chosen baikal over radicale?
  • are you happy with filestash? im torn between filestash and filebrowser
TheCakeWasNoLie ,

I’m self-hosting my mail server for all kinds of neat tricks, like turning mailing lists into RSS feeds and putting attached bills in the right folder. But it is tricky to pull off, because 90% of all email is spam so you must take that seriously because otherwise nobody will accept you mail. One thing I learned quickly is not to use PGP. They almost always and up in spam boxes.

I switched from radicale to baikal because vdirsyncer (which I then used) didn’t agree with radicale on the caldav standard. And I’m very happy with Filestash. It’s fast and does the only thing I need it do do, stash files.

BTW I used to use NextCloud, but that was way too much work and I really like tools that do just one thing and do it well.

TiredAndHappy ,

I also self host a mail server but I don’t think I’d every put anything super important through it. Right now I use it to send emails from the services I run (plex, file sharing, etc). It’s a fun little project but if you want something reliable it’s going to get pricy very quick.

shinratdr , to futurama in How soon is the new season coming?
@shinratdr@lemmy.ca avatar

Grunka- lunka- dunkity- dewseason…

certain_people OP ,

Shut the hell up!

rarkgrames , to selfhosted in Welcome to [email protected] - What do you selfhost?
@rarkgrames@lemmy.world avatar

Hi, I have a few bits and pieces.

Currently I have:

Pi Zero running pi-hole

A Mac mini running overseer on Linux

Another Mac mini that I use for dev work that’s also running sonarr, radarr, bazarr, plex and Hoobs under MacOS

A Dell R170 running a number of VMs (windows and Linux) that host a couple of websites , and a load balancer on proxmox.

Things are a bit spread out where I sometimes just had to use the hardware I had to hand but it all works together somehow.

Edit: I’ve also just spun up a MediaWiki for me and my colleagues to use to store useful snippets of code etc. in a central place. Although I know my colleagues, they’ll use it once and then it’ll be abandoned :D

KIM_JONG_JUICEBOX , to startrek in I think Voyager is underrated

What are episodes people think are dumb?

I think the last seasons the writers really had some fun and the actors must have loved those.

catshit_dogfart OP ,

Let’s see, I don’t remember episode titles but from memory:

  • The one where Harry Kim is having visions of a planet full of hot desperate women who want him for a mate
  • The one where they’re on a prison colony and Chakotay has to fight The Rock. And this was before Dwayne Johnson’s film career really took off.
  • The one where they go Warp 10 and devolve into lizard creatures. The lizard versions of Tom Paris and Janeway have lizard babies.
  • The one where Janeway falls in love with a holodeck character
  • The one where Kes comes back and she’s evil

It’s a real mixed bag. Sometimes you swing and you miss, and I respect them for even giving these stories a chance. Also I rather like Tuvix.

z500 ,
@z500@startrek.website avatar

With Threshold I always was mildly impressed with how they made a point that evolution doesn’t necessarily mean that a species will become super advanced somehow. That they evolved “in-place” instead of over generations is still a pretty bonkers misunderstanding of evolution that they always fall for, but I guess watching them turn into lizards over the next several decades probably wouldn’t make the best TV lol

xontinuity ,

I agree. Honestly Threshold was a decent episode up until that ending. But the ending… was just too much.

OpticalData ,

C’mon Fair Haven gave us the line ‘Delete the wife’, it deserves awards for that alone

Emerald_Earth , to piracy in direct links to pirated media

I would say that’s still a bad move. There is not “no risk”, as it could still put the owners of the Lemmy instance in danger. So be respectful to those who are hosting this instance and don’t link copyright infringement.

astrobound ,

we could all use base64 when linking stuff.

aucubin , to selfhosted in [SOLVED] How to configure Lemmy instance nginx proxy for websockets?

The nginx config provided in the Docker installation part contains everything needed for nginx. If you are installing lemmy directly on the machine you may need to use different upstreams.

The websocket part is basically the

<pre style="background-color:#ffffff;">
<span style="color:#323232;">            # proxy common stuff
</span><span style="color:#323232;">            proxy_http_version 1.1;
</span><span style="color:#323232;">            proxy_set_header Upgrade $http_upgrade;
</span><span style="color:#323232;">            proxy_set_header Connection "upgrade";
</span>

part in the nginx config on that page.

penguin_ex_machina OP ,

I seem to be having a lot of lag at the moment, and my post was created twice so I’m just going to delete the other one and start from here…

So I have this set up per the instructions. My instance is on a Digital Ocean instance, and I’m using nginx on the host to point to localhost:1235, but that’s about all that conf file is doing. Is there something else I need to do?

aucubin ,

Ok, just to understand what you did. You got an Digital Ocean droplet with Docker and used the instructions in the link I posted or different ones?

If you are using the instructions from my link nginx will also run in a docker container, which means that your upstream will not be on localhost, but rather the lemmy and lemmy-ui containers.

If you did install it locally then localhost:1235 could be correct.

penguin_ex_machina OP ,

I think this is where my lack of experience with Docker is showing.

I spun up a DO droplet and installed nginx, Docker CE, and Docker Compose. Then I went through the instructions on the page you linked to and it set it up just fine but when I went to my droplets IP address it wouldn’t connect. I had to add a config file that pointed traffic coming into the droplet on port 80 to redirect to the Docker container instead. Am I overcomplicating it?

aucubin ,

No, you are right. If you are using the nginx container from the docker installation guide then you will also need to add port 80 atleast in order to see anything, as nginx will otherwise not listen on the port 80 of the droplet.

How does your nginx.conf look now?

penguin_ex_machina OP ,

The one meant for the Docker container or the one on the host?

aucubin ,

Ah, so you added another nginx on the host by installing it from the package store of the distro and have that proxy port 80 to the docker nginx?

If you do that then you also need to add the websocket settings I had in the first comment to the host nginx.

What I meant what that the nginx in the docker-compose from lemmy also listens to port 80 and you just need to add

<pre style="background-color:#ffffff;">
<span style="color:#323232;">server {
</span><span style="color:#323232;">    listen 80;
</span><span style="color:#323232;">    server_name my_domain.tld;
</span><span style="color:#323232;">
</span><span style="color:#323232;">    location / {
</span><span style="color:#323232;">        proxy_pass http://localhost:LEMMY_PORT;
</span><span style="color:#323232;">        proxy_set_header Host $host;
</span><span style="color:#323232;">        include proxy_params;
</span><span style="color:#323232;">    }
</span><span style="color:#323232;">}
</span>

to the nginx.conf of the container.

Then you should have it accessable from port 80 without the host nginx (of course you need to stop the host nginx then).

penguin_ex_machina OP ,

So looking at this again now, am I taking that whole block and adding it to the container’s nginx.conf? If so, does that mean I have to change what port it’s currently listening to (because there’s already a rule in the file for port 80)?

There’s a comment in that server rule that says “this is the port inside docker” and a comment immediately after that says “this is facing the public web”, which confuses me.

bobaduk , to android in What phone are you using?

Asus ZenFone 8.

I love it, it’s a nice bit of kit, and the few gimmicks it has are useful: scheduled charging for better battery life, digital well being stuff to stop me being glued to my phone.

Battery would be a problem for a super power user, but lasts me all day with commuting, reading the web etc. Camera is not on a par with flagships but I rarely take pictures.

Prior to this I had a Huawei until the battery died on me. I upgrade when I have to, I hate consumer upgrade cycles.

I have zero android ecosystem products.

I’m Android/Linux all the way unless work force me to use a Mac, which happens periodically, as part of the great cycle of life.

knr1651727105 ,
@knr1651727105@lemmy.world avatar

I miss my Z8. It was 1 week short of 2year mark when it died last week. I would advise to you to turn on your auto backup just in case.

And if you use the tachiyomi app, back that up as well.

ChoAlZu , to selfhosted in What are YOU self-hosting?

Here’s mine:

Unraid OS: Docker:

  • cadvisor
  • deluge
  • FileZilla
  • Firefox
  • Fivefilters-full-text-rss
  • FreshRSS
  • Home-Assistant-Container
  • Libreddit
  • Microsoft-Edge
  • pihole
  • Plex-Media-Server
  • Radarr
  • Resilio-Sync
  • Scrutiny
  • Sonarr

Unraid OS: Virtual Machines:

  • Debian VM
  • Windows 11 VM

Unraid OS: Plugins:

  • GPU Statistics
  • Tailscale
  • CA Mover Tuning
  • Community Applications
  • Dynamix System Temperature
  • Intel GPU TOP
  • NVTOP
  • Unassigned Devices

My unraid server is my “jack of all trades” machine running the primary services apart from my Pihole instance (as below).

Ubuntu Server LTS:

  • pihole
  • pivpn
  • emby

This is running on an old thin client machine and is my primary Pihole/VPN machine with a backup music/media server running Emby.

MorganCS , to selfhosted in What are YOU self-hosting?

In my homelab I have two main servers

**Esxi:**Opnsense VM –Running Wireguard VPN Docker VM –Vaultwarden –Portainer –FreshRSS –Heimdall Dashboard –SponsorBlockCast –Portainer Agent Home Assistant VM –Node Red –Frigate –DoubleTake –zigbee2mqtt –Mosquitto –ESPHome SecureVM –NGINX Proxy Manager –Portainer Agent

Ubuntu Media Server 40tb zfs Running Docker:–Scrutiny –Plex –YTDL Material –Lidarr –Radarr –Bazarr –Sonarr –Sabnzbd –Compfreface –Portainer Agent Cockpit

Sergio , to futurama in Which Futurama line(s) do you find yourself quoting for no raisin?

“The Original Party Worm”

Darkwraith ,

Wiggity wam wam wozzle!

I’m gonna go lay down…

chaosppe , to ukcasual in What icon should we have?
@chaosppe@lemmy.world avatar

Just for fun I asked gpt-4 what the most British thing is, I then asked it to make a prompt for midjourney. Here is the result. (Don’t question the alien hand)

https://lemmy.world/pictrs/image/8144a951-13fb-468b-a0f5-23e778ed94a9.png

GuinnessChocolates ,

Ugh the hands. Always the hands.

jcb2016 , to android in What phone are you using?
@jcb2016@lemmy.world avatar

Galaxy S23 … Love the 120hz

_MoveSwiftly ,

Yeah it’s pretty great, really smooth. I guess that’s part of the experience. I’ve just been enjoying it, without realizing that it may be adding to the experience.

LazyGamer1111 , to selfhosted in What are YOU self-hosting?

i USED to host a mc server, now i dont host anything as i cant get jellyfish automatic pirating to work…

jkyl ,

radarr+sonarr should suit you, here’s a good setup guide: trash-guides.info

rtbravo , to linux in What was your first distribution?
@rtbravo@lemmy.world avatar

RedHat here in the late 90s, back when you could still find yourself writing a “modeline.”

Then Debian in the early 00s when apt was still a major discriminator. Finally, Ubuntu around 2008 just so I was running the same thing I was recommending to family members for ease of use. (At the time, Ubuntu sported the same ease of installation and hardware detection I’d found with Knoppix.)

Now on Xubuntu, but seriously eyeing a return to Debian.

Turtle ,
@Turtle@lemmy.world avatar

RedHat in the mid-late 90s here too. It wasn’t a great time for the linux desktop haha. I think I used afterstep or windowmaker back then. RPM hell was bad and hosed my system enough that Debian was like a savior with apt-get. Never really looked back from debian based systems since.

  • All
  • Subscribed
  • Moderated
  • Favorites
  • random
  • lifeLocal
  • goranko
  • All magazines