skip to Main Content

How to reduce the time_starttransfer (TTFB) with AWS EC2 – Nginx

My website is on AWS EC2. I checked the TTFB (Time to First Byte) with this command: curl --output /dev/null --silent --write-out "time_namelookup=%{time_namelookup}ntime_connect=%{time_connect}ntime_appconnect=%{time_appconnect}ntime_pretransfer=%{time_pretransfer}ntime_redirect=%{time_redirect}ntime_starttransfer=%{time_starttransfer}ntime_total=%{time_total}n" --url http://13.37.46.163/ Here is the result when I run the command on my computer: time_connect=0,014614 time_appconnect=0,000000 time_pretransfer=0,014657…

VIEW QUESTION
Back To Top
Search