Points you have to check out to build an application on AWS 【AWS】

I’ve built an application on AWS, but there were many traps. In order to create an application on smoothly next time, I”m going to take a memo here. The architecture is Docker and Golang and Amazon Linux.

  1. Is Docker installed?
  2. Is Docker on active?
  3. Is a web server installed such as Nginx?
  4. Are Ports open such as http(80) on AWS?
  5. Is 80 port listened on a server in case of http?
  6. Is proxy_pass written on a web server?

I think these are enough to build an application on AWS. Commands like netstat -atn, telnet, and curl are really important, so we have to remember it. Proxy_pass on Nginx is like this.

server {
listen 80;
location / {
proxy_pass http://localhost:3000;
}
}

My LinkedIn account is below! Please contact me!

https://www.linkedin.com/in/tomoharu-tsutsumi-56051a126/

--

--

Tomoharu Tsutsumi
Tomoharu Tsutsumi

Written by Tomoharu Tsutsumi

5+ years Full Stack SWE (Ruby, Go, TypeScript, JavaScript) | Former Founding Engineer of AI Startup in Canada

No responses yet