• Our team is looking to connect with folks who use email services provided by Plesk, or a premium service. If you'd like to be part of the discovery process and share your experiences, we invite you to complete this short screening survey. If your responses match the persona we are looking for, you'll receive a link to schedule a call at your convenience. We look forward to hearing from you!
  • We are looking for U.S.-based freelancer or agency working with SEO or WordPress for a quick 30-min interviews to gather feedback on XOVI, a successful German SEO tool we’re looking to launch in the U.S.
    If you qualify and participate, you’ll receive a $30 Amazon gift card as a thank-you. Please apply here. Thanks for helping shape a better SEO product for agencies!
  • 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.
  • The Horde component is removed from Plesk Installer. We recommend switching to another webmail software supported in Plesk.

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