• We value your experience with Plesk during 2024
    Plesk strives to perform even better in 2025. To help us improve further, please answer a few questions about your experience with Plesk Obsidian 2024.
    Please take this short survey:

    https://pt-research.typeform.com/to/AmZvSXkx
  • The Horde webmail has been deprecated. Its complete removal is scheduled for April 2025. For details and recommended actions, see the Feature and Deprecation Plan.
  • We’re working on enhancing the Monitoring feature in Plesk, and we could really use your expertise! If you’re open to sharing your experiences with server and website monitoring or providing feedback, we’d love to have a one-hour online meeting with you.

Issue Allow PSD files to be accessed

karam

Basic Pleskian
Hello everyone,

There's a problem with NGINX that doesn't allow to access to PSD files.

Based on this article:

It seems we have to revert the wordpress toolkit setting to allow access to sensitive files.

We don't want to do that, but we want to only allow PSD files to be accessed.

Any ideas ?
Thanks
 
Try to modify the domain's nginx config etc/nginx/plesk.conf.d/vhosts/domain.tld.conf with removing PSD related symbols:

Code:
# To remove this rule, revert this security measure on each WordPress installation on this domain
        location ~* ".*\.(?:psd|log|cmd|exe|bat|csh|ini|sh)$" {
                return 403;
        }
 
Back
Top