FMFaraz Mughalinmughalfrazk.hashnode.dev·Jun 7 · 7 min readDynamic base URLs in a Dockerized React appThe Problem We were building a B2B application with a multi-tenant backend. Each tenant got their own Kubernetes deployment under their own subdomain tenant1.example.com, tenant2.example.com, and so o00
FMFaraz Mughalinmughalfrazk.hashnode.dev·Jun 2 · 12 min readSocial sign-in in React with AWS Cognito and Amplify v5 (Google + Apple)Originally published: Aug 17, 2023Migrated from GitHub Gist: Jun 02, 2026 Prerequisite Requirements Wroking React Project AWS Account access with a Cognito User Pool already created Google Develope00
FMFaraz Mughalinmughalfrazk.hashnode.dev·Jun 2 · 1 min readInstalling Laravel on Ubuntu with Apache and PHP 7.4Originally written in 2021 while setting up a side project. Posting here for reference — PHP 7.4 is now end-of-life, but the Apache steps still apply. Step 1: Log in via SSH and Update your System apt00
FMFaraz Mughalinmughalfrazk.hashnode.dev·Jun 2 · 3 min readDeploying Node/React using nginxOriginally published: Dec 15, 2021Migrated from GitHub Gist: Jun 02, 2026 1. SSH into ec2 Open the Terminal, go to the location of your pem file. Run SSH command for EC2 ssh -i "PEM_FILE.pem" ubuntu@S00