this post was submitted on 26 Jul 2023
14 points (93.8% liked)

No Stupid Questions

35255 readers
935 users here now

No such thing. Ask away!

!nostupidquestions is a community dedicated to being helpful and answering each others' questions on various topics.

The rules for posting and commenting, besides the rules defined here for lemmy.world, are as follows:

Rules (interactive)


Rule 1- All posts must be legitimate questions. All post titles must include a question.

All posts must be legitimate questions, and all post titles must include a question. Questions that are joke or trolling questions, memes, song lyrics as title, etc. are not allowed here. See Rule 6 for all exceptions.



Rule 2- Your question subject cannot be illegal or NSFW material.

Your question subject cannot be illegal or NSFW material. You will be warned first, banned second.



Rule 3- Do not seek mental, medical and professional help here.

Do not seek mental, medical and professional help here. Breaking this rule will not get you or your post removed, but it will put you at risk, and possibly in danger.



Rule 4- No self promotion or upvote-farming of any kind.

That's it.



Rule 5- No baiting or sealioning or promoting an agenda.

Questions which, instead of being of an innocuous nature, are specifically intended (based on reports and in the opinion of our crack moderation team) to bait users into ideological wars on charged political topics will be removed and the authors warned - or banned - depending on severity.



Rule 6- Regarding META posts and joke questions.

Provided it is about the community itself, you may post non-question posts using the [META] tag on your post title.

On fridays, you are allowed to post meme and troll questions, on the condition that it's in text format only, and conforms with our other rules. These posts MUST include the [NSQ Friday] tag in their title.

If you post a serious question on friday and are looking only for legitimate answers, then please include the [Serious] tag on your post. Irrelevant replies will then be removed by moderators.



Rule 7- You can't intentionally annoy, mock, or harass other members.

If you intentionally annoy, mock, harass, or discriminate against any individual member, you will be removed.

Likewise, if you are a member, sympathiser or a resemblant of a movement that is known to largely hate, mock, discriminate against, and/or want to take lives of a group of people, and you were provably vocal about your hate, then you will be banned on sight.



Rule 8- All comments should try to stay relevant to their parent content.



Rule 9- Reposts from other platforms are not allowed.

Let everyone have their own content.



Rule 10- Majority of bots aren't allowed to participate here.



Credits

Our breathtaking icon was bestowed upon us by @Cevilia!

The greatest banner of all time: by @TheOneWithTheHair!

founded 1 year ago
MODERATORS
 

I'm not really tech savvy but can follow directions pretty well. I am trying to create a local lemmy instance for my country and want to contribute to the community with a local server.

Does anyone know which community would I join to get more info about this? Any guides that might be helpful for me? I would appreciate the help. Thanks.

top 5 comments
sorted by: hot top controversial new old
[–] [email protected] 3 points 1 year ago

How are your Linux skills?

You'll need a domain name to start. If you plan on hosting any communities, you'll want to secure it as well, I'd recommend a cloudflare account, use their DNS proxy and then only allow traffic from cloudflare cdns so as not to expose your server directly. To manage this, you'll have to host your DNS in cloudflare and create and install an origin certificate on your host server.

If you are comfortable with Linux and command line (you'll want to know at least the basics to get you by), then you can deploy via ansible. Lemmy has a nice little doc that mostly covers everything.

Feel free to ping me if you have some questions.

Oh and if you are having your instance send mail, you can use the service built in, but it'll get flagged as spam. You'll need either a SMTP relay service like sendgrid or SPF records so that receiving email servers can verify its coming from your domain.

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

The lemmy docs have a version that sets it up via CDK. I would not do that as it's needlessly expensive for experimentation.

Cheapest AWS option is set up an EC2 instance with an elastic IP, follow the wizard AWS gives you. Ubuntu OS will be the most accessible. Set SG to allow http (port 80)and https (443) from 0.0.0.0/32 and Ssh only from your IP address. You'll need to generate a keypair as part of the setup. and then you'll ssh in and follow any generic lemmy get started guide (probably the easy install script).

The free tier instance type will get you started but it'll start giving you problems after not too long. Probably need to go up to like a t3.medium to avoid it occasionally freezing up on you.

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

I'm surprised no one has setup an AMI. I'm sure there are plenty of semi-technical people who wouldn't mind spinning up instances but just don't have the hardware to do it.

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

Theres already docker images and ECS/fargate. Im debating on putting together a whole terraformed kubernetes stack for other instances to use, it would be for larger instances though as the while stack might be close to $100/mo with costs going up automatically with scale. Every time someone runs an instance and it runs on a single box with no scaling or redundancy it makes me cringe a bit.