ptz

joined 1 year ago
[–] ptz@lemmy.ptznetwork.org 4 points 1 year ago* (last edited 1 year ago)

For #3, as far as the instance lists and the Lemmy Community Browser are concerned, I believe a 301 redirect should work as long as it redirects with the URI. e.g. old.lemmy.tld/c/Hangout -> new.lemmy.tld/c/Hangout . Eventually my new instance will be picked up by those, but I'm still not sure if/when my old instance would drop off (see question #1)

That would allow anyone clicking into my old instance from any of the currently published instance lists to land on the new domain. But I'm not sure how currently federated instances would handle that.

4
submitted 1 year ago* (last edited 1 year ago) by ptz@lemmy.ptznetwork.org to c/lemmy_support@lemmy.ml
 

Note: Edited to remove several questions as I found the doc that covered changing the domain name.

I set this instance up on my personal/development domain and would like to move it to a new, dedicated one before it picks up any more users.

I've got a few questions about how this would affect existing federation:

According to the backup/restore doc, it says that changing the domain name after federating will break federation.

I guess my questions relate to how badly and what is the best way to mitigate any damage? If I have to scrap this instance and lose everything, at this point, it's not a huge problem.

  1. Will currently peered instances eventually drop my old instance after a period of unavailability? If not, are there any negative implications for having a dead peer?

  2. Would I be better off just to create a brand new instance, alert my users and have them re-register, and then decommission this one?

  3. Would returning an HTTP 301 response at my old instance be beneficial or would that cause problems for existing peers?

  4. Assuming no other instances are subscribing to my single community yet, would that make any difference?

  5. Are there any other gotchas I should know about?

Basically, in my haste to get started exploring running a Lemmy server, I let my development instance get published. I can easily move it to a production state, but I would prefer to do so on a dedicated domain versus my personal/development one.

Thanks in advance.

[–] ptz@lemmy.ptznetwork.org 5 points 1 year ago* (last edited 1 year ago)

Even worse, the fancy smart display doesn't even have to physically break to become inoperable.

Most smart devices connect and are locked to a single company's servers and become e-waste the moment they decide to pull the plug.

If you're lucky, you or a techy friend can flash an open firmware to them, but that's not always possible.

[–] ptz@lemmy.ptznetwork.org 2 points 1 year ago (1 children)

If you meant instance admins, is there any particular customization? Mine has a unique name but the PWA still created the launcher as "Lemmy"

I'm assuming that's coming from a static value in the served manifest.json but I haven't really investigated or thought about the launcher name until you mentioned it.

[–] ptz@lemmy.ptznetwork.org 3 points 1 year ago* (last edited 1 year ago)

I joined, but I'm definitely going to be a lurker. It's not a hobby I ever got into, but I enjoy seeing other people show off their work.

[–] ptz@lemmy.ptznetwork.org 3 points 1 year ago

I work in IT, and Jurassic Park (novel) was a big influence.

Basically it taught me to not assume any system or process is infallible and to always expect the unexpected.

[–] ptz@lemmy.ptznetwork.org 2 points 1 year ago* (last edited 1 year ago)

To expand on that, I do a join between the local_user and person tables so I can grab the name and display names for the local users:

select 
  p.name, 
  p.display_name, 
  a.person_id, 
  a.email, 
  a.email_verified, 
  a.accepted_application 
from 
  local_user a, 
  person p 
where 
  a.person_id = p.id;
[–] ptz@lemmy.ptznetwork.org 2 points 1 year ago (3 children)

Do you run your own Firefox sync service or use Mozilla's?

I've wanted to set my own sync up but never got around to it. The few times I've skimmed over the setup process, it looked pretty rough.

[–] ptz@lemmy.ptznetwork.org 3 points 1 year ago* (last edited 1 year ago)

I just used the Docker logging options to cap the stdout/stderr log to a reasonable size. Just add logging options to each chatty service and change 25m to whatever makes sense for your environment.

docker-compose.yml:

services:
  ....
  lemmy:
    ...
     logging:                                                                                                                                                                                 
        options:                                                                                                                                                                               
          max-size: 25m
  pictrs:
    ...
       logging:                                                                                                                                                                                 
        options:                                                                                                                                                                               
          max-size: 25m
[–] ptz@lemmy.ptznetwork.org 4 points 1 year ago

I found this post, and it was useful.

[–] ptz@lemmy.ptznetwork.org 2 points 1 year ago* (last edited 1 year ago) (1 children)

I'd heard about Lemmy a good while back, but there wasn't much interest in it until the Reddit API kerfuffle.

I really like the concept of federated social networks and breaking free of the big tech rage-baiting algorithms. Just give me a list of topics I can follow and let me sort and filter them how I want. Don't suggest or recommend things to me, especially if they're designed to make me angry just for sake of engagement.

Lemmy seems like it has a lot of potential in that regard, and I'm hopeful it's able to build a respectful user base. I'm primarily here to feel out the landscape and be the change I hope to see in the world.