pastthepixels

joined 1 year ago
MODERATOR OF
[–] [email protected] 3 points 1 year ago

I do have to admit I'm part of the problem...! I think that this probably is the reason why meme communities on Lemmy are so big right now -- memes are designed to be reposted, so we're seeing a lot of that content opposed to original content (which isn't a bad thing, but it tends to drown out other content on All pages). Maybe I can get around to making more art for once and I can start to populate Lemmy with more content :)

But for right now, I agree that things are quite fine as they are. I don't really feel a need to create a separate community as I would on say, another larger platform, because right now this space (and others on the Fediverse) feels like a community where people's voices are actually heard. It's really refreshing, honestly. But yeah, it's nice to see what people think on this! Thanks for your input!

[–] [email protected] 2 points 1 year ago

That's true, yeah. I do really like how the Fediverse is growing (and quickly too!) so we might see that start to happen later on (I sometimes already see a bit of niche communities on Lemmy being created). But at the same time, I do have to agree that although there's less posts, there's a genuineness to each post that really makes me appreciate them more.

[–] [email protected] 2 points 1 year ago

Yeah, Podman is definitely one of those things I would say to do the latter with. It's functionality is the same as Docker though (commands work almost 1:1, and even docker-compose works with Podman), it has better integration with other system components (like automatically creating systemd services to start containers when a computer is restarted), and it gets you away from Docker as a company while still being able to access their containers on Docker Hub.
In the end though, I'd recommend sticking to what you're familiar with. It's always better to administer commands to your server that you know will work rather than learning as you go and hoping something doesn't break.

[–] [email protected] 1 points 1 year ago

Firefox sorta does! If you only use tab groups (or profiles for that matter) to separate school tabs from work and personal tabs, I recommend giving the Multi-Account Containers extension a look.

[–] [email protected] 10 points 1 year ago

Or worse, "Why should I switch to Firefox? Everybody's complaining about the performance of Firefox compared to Chrome, but Chrome just works for me."

Blissfully unaware of the kind of power you're giving Google over the Internet by using their browser. I once had an experience where someone tried to use this to push me back to using Chrome.

[–] [email protected] 1 points 1 year ago

he's literally me fr

[–] [email protected] 1 points 1 year ago (2 children)

I may not be able to answer some of the more security-oriented questions, but one of the things I recommend is using a proxy to "hide" your home IP address. IP addresses can contain a lot of information including location data, so it's a good idea to make things harder for attackers to figure out where you live. I'm pretty sure you can do this with a basic VPS setup, but I know for sure you can do this with Cloudflare (as I have it enabled on my server).

As for getting reverse proxies set up from your Docker containers to the outside world using Apache, I can help. I use (rootless) Podman on my Raspberry Pi, meaning when I expose ports from my containers I have to choose port numbers greater than 8000. Once I have a port (let's say 8080), and a subdomain (I'll use subdomain.example.com), I just need to create a file in /etc/apache2/sites-available/ which I'll call site.example.com.conf. The content usually looks something like this:


  ProxyPreserveHost On
  ProxyRequests Off
  ServerName subdomain.example.com
  ServerAlias subdomain.example.com
  ProxyPass / http://localhost:8080/
  ProxyPassReverse / http://localhost:8080/

Then you just need to enter the commands sudo a2ensite subdomain.example.com and sudo systemctl reload apache2 and you should be able to access your container as a subdomain. You should just need to forward port 80 (and 443 if you want to set up Let's Encrypt and HTTPS) on your router.

Hope this helps!

1
External image test! (media.tenor.com)
submitted 1 year ago* (last edited 1 year ago) by [email protected] to c/[email protected]
 

Uploading media to Potatoe Lemmy might not work, but can you link to pre-existing media elsewhere?? We shall see!

1
Image test! (lemmy.potatoe.ca)
submitted 1 year ago* (last edited 1 year ago) by [email protected] to c/[email protected]
 

A BIT OF AN ISSUE WITH PICTRS: PNGs and JPEGs under 2 megs are the only files that can upload. Anything that's not an image file, or over 2 megabytes in size will give some JSON error. :(

3
submitted 1 year ago* (last edited 1 year ago) by [email protected] to c/[email protected]
 

Hey everyone! I run a server with Podman instead of Docker (and on an arm64 processor), so when I wanted to host a Lemmy instance on it, I faced a bit of challenges. I ended up writing this guide so if anyone else is in the same pickle, this should make installing Lemmy closer to headache-free.
If you're reading this post that means the guide works!

1
First post! (lemmy.potatoe.ca)
 

Well, after a bit of testing, everything seems to be working with Potatoe! There is an issue with sending emails though -- this is running on my home network, so my ISP blocks outgoing requests to port 25 (the port mail servers have for listening to incoming mail).

There's also an issue with federation -- you might not be able to see the same number of posts/comments/votes as you would on servers where those posts/comments/votes originated, but this should be fixed in a later update for Lemmy (which is the reason why I'm on the latest branch).

Things are still a little bit experimental, and this is running alongside a lot of other software on my 4 GB Pi, so I can only accept a few applications at the moment. If you're interested in anything Potatoe, please send me an email! I'm pondering getting better hardware, but I want to see how much it's needed first.

Thanks for checking out my server and enjoy your stay!

view more: ‹ prev next ›