We already know basic What is Git in previous tutorial. Next We will do the installation and preparation to start learning Git. This tutorial is divided into three parts: How to Install Git on Linux. How to Install Git on Windows. The initial configuration must be done after installing Git. …
Linux
Git for Beginner
Git is one tool that is often used in software development projects. Git even become a tool that must be understood by the programmer, because it is widely used everywhere. On this session we will learn Git from the base. This article will only discuss the introduction of Git. To …
Accessing SSH Through a browser using Shellinabox
Updating and maintaining our website anytime, anywhere are very crucial. Mostly i use my dedicated internet to access my server. But sometimes i use internet that has a proxy/firewall behind it. The bad news they block SSH port. Sigh 🙁 Then i need to make my server has a capability …
Fixing a 502 Bad Gateway after a Ghost update
When i tried to update my ghost blog to latest, suddenly i had a 502 Bad Gateway Error. Tried to check ghost service, but it is running and no error.Tried to read some nginx logs, it said it can not reach my site. To solve this i just run: ghost …
Redirecting non-www to www with Nginx on Ubuntu
I prefer to make my website to www rather than non-www. To set it up is really easy. My server use Ubuntu and Nginx and running Let’s Encrypt SSL. I make a server block that handles redirection request. And then other server block to handle the real request. Here is …
How To Change Time Zone in VPS Ubuntu
When you setting up a new VPS, sometimes it comes with default timezone. It is usually set to UTC. If you want to read log files or some configuration you will be confused with the default timezone and local time. You can change it to follow your timezone. Check the …
Setting Up SSL with Ghost Blog using Lets Encrypt
Recently i build (again) my website using Nginx and VPS hosted at UpCloud.com. So, after i set it up and running well on http, then next step is enable SSL to my site. My VPS build in UpCloud with 10$/mo plan, that claims the fastest cloud vps: $ 10 / …
First Things To Do After Setting Up a VPS
The first things i have to do after setting up my VPS is to harden it. We are live in the public cloud that do not know what will happen to your website, it is better to prevent before to late later. This is what i usually do when i …
Add Google Adsense to Ghost Blog
Adding Google Adsense to your Ghost self hosted blog is needed a little customization. Though, you can add the code using code injection in ghost dashboard, and you can place it at header or footer. But i need more freedom to where i want to place my ads. Here is …