• Plesk Uservoice will be deprecated by October. Moving forward, all product feature requests and improvement suggestions will be managed through our new platform Plesk Productboard.
    To continue sharing your ideas and feedback, please visit features.plesk.com

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