Scale up as you grow — whether you're running one virtual machine or ten thousand.

From GPU-powered inference and Kubernetes to managed databases and storage, get everything you need to build, scale, and deploy intelligent applications.

This textbox defaults to using Markdown to format your answer.
You can type !ref in this text area to quickly search our full set of tutorials, documentation & marketplace offerings and insert the link!
These answers are provided by our Community. If you find them useful, show some love by clicking the heart. If you run into issues leave a comment, or add your own answer to help others.
When your website sets a cookie, the web browser sends this cookie when requesting static files like js, css and png. This increases network activity.
Being cookie free means using a different domain or subdomain for serving files like images, stylesheets and Javascript.
So you need to create a new virtual host file on Nginx with the same document root:
server {
listen 80;
server_name static.example.com;
root /var/www/example.com;
fastcgi_hide_header Set-Cookie;
}
Create an A Record for static.example.com in the DNS section.
Edit your website to make the css, js and image files use this subdomain in its URL.
https://gtmetrix.com/use-cookie-free-domains.html http://serverfault.com/q/78227
Isn’t there a way to provide this under the same host using the rules you’d use for caching specific extensions?