Points you have to check out to build an application on AWS 【AWS】
Mar 18, 2023
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.
- Is Docker installed?
- Is Docker on active?
- Is a web server installed such as Nginx?
- Are Ports open such as http(80) on AWS?
- Is 80 port listened on a server in case of http?
- 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;
}
}