elasticbeans talk 에서 에러 발생
도메인 연결은 제대로 되나 servere 가 뜨는 상태다.
큰 문제는 없는것 같지만 찝찝하니 수정해주자.

로그를 보니 nginx에서 types_hash 관련 에러가 발생했다.

stackoverflow 를 살펴보니 해시값 설정을 늘려줘야한다.
관련해서 늘리는법은 아마존에서도 다루고 있다.

사진과 같은 경로에 client_max_body_size.conf 파일을 생성하고 types_hash 사이즈를 늘려정의해준다.
types_hash_max_size 4096;
그리고 재배포!
인스턴스 접속해서 확인하는 방법 :
ssh로 접속시 root 말고 ec2-user로 접속해줘야한다
ssh -i "{pemkey}" ec2-user@{ec2퍼블릭DNS}
$ sudo nginx -T | egrep -i "client_max_body_size"
nginx: the configuration file /etc/nginx/nginx.conf syntax is ok
nginx: configuration file /etc/nginx/nginx.conf test is successful
client_max_body_size 50M;