Reputation: 916
Is it a good practise to keep the static content to be served from another subdomain instead of the same? as web server serves the request and the content with that request, now one web server will only handle the request and if we create another server instance with another web server to only server the static content, will this help to increase the application performance? Of Course the static content like css,js are minified and compressed, images are also optimised. As I want to create own static content server only. So can anybody suggest a good way of handling this?
Upvotes: 0
Views: 790
Reputation: 687
yes, it's a good practice. Some benefits are
Upvotes: 1