In previous part, i have shown how to hosting website using AWS S3. In this part, i am going to show how to configure Amazon Route 53 as your Domain Name System (DNS) provider. If you want to serve content from your root domain, such as demosite.com, you must use Amazon Route 53. You create … Continue reading Setting up a Static Website Using AWS S3 and Route 53 (Part 2)
Category: AWS
Setting up a Static Website Using AWS S3 and Route 53 (Part 1)
In this part, i am going to show my experience how to deploy simple Angular in AWS S3. Step 1: Assuming you already have simple site with Angular CLI ng new PROJECT-NAME cd PROJECT-NAME ng serve Next, using ng build to compiles the application into an output directory. It will generate code in the dist/ … Continue reading Setting up a Static Website Using AWS S3 and Route 53 (Part 1)
Deploy Go in AWS Beanstalk
Follow the steps here to walk you through the process of deploying a Go application to Elastic Beanstalk Step 1: Create Go project Create Go project with application.go: package main import ( "encoding/json" "log" "net/http" "os" ) func main() { port := os.Getenv("PORT") if port == "" { port = "5000" } f, _ := … Continue reading Deploy Go in AWS Beanstalk