• 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!
  • Support for BIND DNS has been removed from Plesk for Windows due to security and maintenance risks.
    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.

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