Posts tagged as security
Log in with ssh key authorization on a Synology NAS
📆2021-03-31🍱server
The operating system of a Synology NAS, DiskStation Manager , is a great web-based GUI making it easy for everyone to manage their NAS. However, sometimes it's preferable to access the NAS through SSH instead of the GUI. Logging in with…
Sign git commits on GitHub with GPG in macOS
📆2021-01-18🍱tools
When you are pushing commits to your repositories you are authenticating with either HTTPS or SSH. Telling GitHub that it is really you. That only ensures that it's the correct user doing the pushing. You could also add an extra level of…
Add HTTP/2 and HSTS to your Nginx site
📆2018-11-27🍱server
HTTP/2 has only been out a for a few years but it is certainly time to activate it on your sites now. Compared to the old HTTP 1.1 there are many pros. Requests are downloaded parallel instead of in a queue, greatly improving speed and…
Add HTTPS to Nginx blocks with Let's Encrypt
📆2018-11-19🍱server
Browsing the web unencrypted with only HTTP is not recommended anymore and Google recently started to mark all sites without SSL as “not secure” in their browser Chrome. Adding a certificate to your site used to cost money and often meant a…
Generate and organize SSH keys on Mac
📆2018-11-08🍱tools
If you've never heard about SSH keys and are still using passwords when logging in to your remote servers you're in for a treat. Or maybe you already know about SSH keys but aren't organizing them in a good way. Anyway this post will make…