• If you are still using CentOS 7.9, it's time to convert to Alma 8 with the free centos2alma tool by Plesk or Plesk Migrator. Please let us know your experiences or concerns in this thread:
    CentOS2Alma discussion
  • Inviting everyone to the UX test of a new security feature in the WP Toolkit
    For WordPress site owners, threats posed by hackers are ever-present. Because of this, we are developing a new security feature for the WP Toolkit. If the topic of WordPress website security is relevant to you, we would be grateful if you could share your experience and help us test the usability of this feature. We invite you to join us for a 1-hour online session via Google Meet. Select a convenient meeting time with our friendly UX staff here.

Resolved Symlinks out of webspace are prohibited

Sysop

Basic Pleskian
I created a symlink in my httpdocs directory:
Code:
$ ln -s /drive2/folder folder
lrwxrwxrwx.  1 root  root         9 Aug 17 00:07 folder -> /drive2/folder
$ cd folder
$ pwd
/var/www/vhosts/example.com/httpdocs/folder
$ cat .htaccess
Options +Indexes

I followed the instructions here:

Cannot open File Manager: Symlinks out of webspace are prohibited /: Access to realpath denied

Although I still get 403 Forbidden when trying to access http://example.com/folder. I tried putting the directive in both http and https sections but to no avail, any tips would be appreciated.
 
Resolved by using:

HTTP:
Code:
<Directory /var/www/vhosts/xxx.com/httpdocs>
       Options +FollowSymlinks
</Directory>
HTTPS:
Code:
<Directory /var/www/vhosts/xxx.com/httpsdocs>
       Options +FollowSymlinks
</Directory>
 
Back
Top