Maybe you don't understand.
Some people don't know, understand or want to bother to do all that and is happy with just a solution.
If you're going to be lazy then you'll always be at the mercy of others, and that tends to put you in a bad spot whenever a difficult situation comes.
Also, when you host your data on other people's servers, then there is a chance, they will have full access to it. Also, do you really have the skills and knowledge to apply or develop and delopy the same level of encrpytion as companies specailized for it? Probably not.
A VPN is literally just an enhanced form of proxy that allows a remote host to connect to a network as if it were part of the local network. The encryption is in place to prevent others from connecting to that network.
An SSH tunnel is an easy solution to establish an encrypted connection between your PC and a remote server. This can be down with the standard program OpenSSH using a simple command line. In this mode, OpenSSH will act as a SOCKS5 proxy once you log in via SSH. It is very easy:
1) Log into your linux server (VPS)
2) Type: ssh -N -D 0.0.0.0:1080 localhost
(If you enter 0.0.0.0 as the IP it will listen on all available system IPs so it is better to specify an exact IP)
To connect you have two options:
1) Connect to the IP and PORT you specified in (2) as a SOCKS5 server, but this will have no encryption.
2) Set up SSH Tunneling using a client like PUTTY SSH, where under the connection options for SSH you must go to "tunneling" and set up a port for the tunnel to listen on - like 2020. Then, in your software, you would configure it to connect as a SOCKS5 proxy to localhost:2020. Connect to your VPS via SSH, and then the connection between your computer and the VPS will be fully encrypted.
So, having your own vps server actually doens't acutally make it "safer" lol.
That's a total joke.
Well, it sure is better, because you can ensure nothing gets logged. So, at most, there may be logs of the VPS making outgoing connections but if you encrypt those then that is evidence of nothing.
can you set it up such that it won't log anything though? can you please send me a link to a guide?
Yes, you set it up however you want. See above.