Earlier quoted context omitted.
Who is giving the advice to not host your own server? My advice is to do host your own server.
Yep, you should definitely host your own server. And build your own Linux distro. And your own computer. Then weave your own cloth, sew your own clothes, cobble your own shoes. Build a car. Buy some land. Build a house. Move to the country. Raise chickens. Till and sow land. Get off the grid. Abandon the modern world. It's perfectly possible to drive a car without building one, or to become technically proficient wit…
Securing your Linux web server
31–40 of 54 posts
Re: Securing your Linux web server
#32I have a little checklist I use to cover the basics: https://drewdevault.com/new-server.html
Changing the default SSH port is a great idea too.
Re: Securing your Linux web server
#33Earlier quoted context omitted.
Who is giving the advice to not host your own server? My advice is to do host your own server.
Yep, you should definitely host your own server. And build your own Linux distro. And your own computer. Then weave your own cloth, sew your own clothes, cobble your own shoes. Build a car. Buy some land. Build a house. Move to the country. Raise chickens. Till and sow land. Get off the grid. Abandon the modern world. It's perfectly possible to drive a car without building one, or to become technically proficient wit…
I don't know why you write such a confrontative comment. Hosting your server is important to have control over your data. You don't need to build your own Linux distro for that...
Re: Securing your Linux web server
#34I have a little checklist I use to cover the basics: https://drewdevault.com/new-server.html
I'm a generalist project manager. When you say "Disable password login via ssh", what is going to be the login method from this point onwards? Via a personal certificate? Tks
Re: Securing your Linux web server
#35I am so glad nowadays to get websites for my hobby projects going, I just have to do a Github page, and don't have to worry about all that stuff (and don't have to pay, either). Github pages + Static content generators are among the best advancements in the recent years.
Back in the day we used to call that "Shared hosting" and it was looked down on by the in-crowd.
Re: Securing your Linux web server
#36Earlier quoted context omitted.
Back in the day we used to call that "Shared hosting" and it was looked down on by the in-crowd.
In my experience shared hosting was looked down upon (and still is) not because we were high-and-mighty better-than-thou you-know-nothing toffee-nosed snobs about the entire idea[1], but because of the many (the majority?) of hosts who were absolutely terrible at security (and stability, and performance both generally & through silly levels of over-selling, and everything else, but security is most important). In thi…
Re: Securing your Linux web server
#37Earlier quoted context omitted.
I'm a generalist project manager. When you say "Disable password login via ssh", what is going to be the login method from this point onwards? Via a personal certificate? Tks
You should be using public key authentication: https://www.digitalocean.com/community/tutorials/how-to-set-... If you insist on using passwords, make sure you at least install something like fail2ban or denyhosts to block the compromised machines which are hammering your server trying to guess passwords. Clients can see which authentication methods are allowed so they know which machines to attack (i.e., yours, if yo…
Re: Securing your Linux web server
#38Earlier quoted context omitted.
What does GitHub have to do with it?
Its a free way to test he knows how to use SSH w/o a SSH server to talk to on the other end.
Re: Securing your Linux web server
#39Earlier quoted context omitted.
Yep, you should definitely host your own server. And build your own Linux distro. And your own computer. Then weave your own cloth, sew your own clothes, cobble your own shoes. Build a car. Buy some land. Build a house. Move to the country. Raise chickens. Till and sow land. Get off the grid. Abandon the modern world. It's perfectly possible to drive a car without building one, or to become technically proficient wit…
It is not about learning everything by doing it yourself from scratch. Hosting a service yourself on your own server is becoming simpler and simpler by the day. Capable hardware is cheaply available in the form of single board computers and projects like Freedombox[0] and Yunohost[1] make the hosting part simple for the services they preconfigure. I don't know why you write such a confrontative comment. Hosting your…
Recently had a power cut that killed the system, but rather than reinstall I poked around for a few hours until I discovered the bootloader's zImage had been corrupted. Copied another over from the original install image, and away it went.
When I find myself a decent job, I'll dedicate a more powerful system to the task, maybe virtualize a few of the servers.
Fun projects, although there are many head-hit-keyboard moments in setting it up.
Re: Securing your Linux web server
#40# dpkg — list
will not work. The correct command is
dpkg --list
I suppose I'm particularly sensitive to this because I ran into a problem copying some commands from a terminal window into a Google Document and then copying/pasting them back to the command line. Google Docs had changed some of the spaces to something that looked like a space (both in the doc and in the shell) but was not and caused inexplicable error messages.
Anyway... I prefer stuff where I can copy/past directly to a terminal window and have it work as the author expected.