• Introducing WebPros Cloud - a fully managed infrastructure platform purpose-built to simplify the deployment of WebPros products !  WebPros Cloud enables you to easily deliver WebPros solutions — without the complexity of managing the infrastructure.
    Join the pilot program today!
  • The Horde component is removed from Plesk Installer. We recommend switching to another webmail software supported in Plesk.
  • The BIND DNS server has already been deprecated and removed from Plesk for Windows.
    If a Plesk for Windows server is still using BIND, the upgrade to Plesk Obsidian 18.0.70 will be unavailable until the administrator switches the DNS server to Microsoft DNS. We strongly recommend transitioning to Microsoft DNS within the next 6 weeks, before the Plesk 18.0.70 release.

Plesk Nginx Browser caching on port 3100?

xberg

New Pleskian
Hi
I want to enable browser caching for a single .JS file served thru port 3100.

For all normal web files I use this in my Plesk Apache / nginx custom field:

location ~* \.(js|css|png|jpg|jpeg|gif|ico)$ {
expires 30d;
add_header Cache-Control "public";
try_files $uri @fallback;
etag on;
if_modified_since before;
access_log off;
}

This works for my port 80 files.
But I have a single file served thru port 3100:
http://mysite.com:3100/socket.io/socket.io.js

This file never gets cached.
Is there an easy instruction to also enable browser caching for this file from this 3100 port? This takes a full 100ms to load on each page of my site.
 
Back
Top