🌐 How to Point a GoDaddy Subdomain to Your VPS (With Nginx + SSL) Hosting your app on a VPS is a great step toward full control and performance. If you’ve already deployed your app (like a Next.js app ) on a VPS and want to connect it to a subdomain like abhinav.rohatech.site , here’s a complete guide to help you get it done. 🔧 Step 1: Add a Subdomain in GoDaddy DNS Log in to GoDaddy and go to your domain dashboard (e.g., rohatech.site ). Click DNS or "Manage DNS". Scroll down and click Add under DNS Records. Add the following A record: Type Name Value TTL A abhinav Your VPS IP address 1 Hour This points abhinav.rohatech.site to your VPS server. 🖥️ Step 2: Configure Nginx on Your VPS SSH into your VPS server and create a new Nginx configuration file for your subdomain: nano /etc/nginx/conf.d/abhinav.rohatech.site.conf Paste the following Nginx con...