Create My VPS
I follow this video and page to create my VPS(Virtual Private Server) for SSR and testing web server. I’d like to note some details:
- Using
nmap
for port scanning and security auditing.
# to scan local port
~$ nmap 127.0.0.1
- Install and start a apache2 server:
~$ sudo apt-get install apache2
~$ sudo /etc/init.d/apache2 start