• 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.

Expire headers with plesk 12.x

Johan06

New Pleskian
Hello,

I have 2 servers with plesk 12.0.18 and 12.5.30

I want to add expire header.

I tried this below on additional directive on the domain plesk config :

Code:
location ~* \.(jpg|jpeg|gif|png|css|js|ico|xml)$ {
         access_log        off;
         log_not_found     off;
         expires           30d;
     }


all the images with dynamic rewrite url disappear.
My rewrite rules are in a htacces so i don't check php with nginx.

Do you have an idea how can i do ?

Regards
 
Hi,

you didn't specify which OS you're running - so you may have to adjust a little. The setup we use on CentOS7 , Plesk 12.5: leave .htaccess alone but instead do [copied from my notes]:

enable leverage browser caching:
Add this to a file within /etc/httpd/conf.d/ (create ownexpires.conf) :

ExpiresActive On
ExpiresByType image/jpg A31536000
ExpiresByType image/jpeg A31536000
ExpiresByType image/gif A31536000
ExpiresByType image/png A31536000
ExpiresByType text/css A2628000
ExpiresByType application/pdf A2628000
ExpiresByType text/x-javascript A2628000
ExpiresByType text/javascript A2628000
ExpiresByType application/x-shockwave-flash A2628000
ExpiresByType image/x-icon A31536000
ExpiresDefault A172800

restart apache centos7: # systemctl restart httpd

Hope it gets you in the right direction :)
Tom
 
It work really well on cento7
Someone have the same trick on debian ?

I should do the same on /etc/apache2/conf.d/ ?

Regards
 
Back
Top