if i want to host virtual site other than /var/www/html/ [ eg :-
/home/apt/Working/PHPSource/]
i am getting this error.
You don't have permission to access / on this server.
I checked with the permission of these folders
drwxr-xr-x 16 apt apt home
drwx------ 16 apt apt apt
drwxrwxrwx 16 apt apt Working
drwxrwxrwx 16 apt apt PHPSource
and found that apt folder dont have read permisson for others
And i cant change
apt folder permission as i dont have rights to change it.
here is my virtual host conf file part..
Code:
NameVirtualHost apt:7070
<VirtualHost apt:7070>
ServerName apt:7070
DocumentRoot /home/apt/Working/PHPSource
DirectoryIndex index.html
ScriptAlias /php/ "/usr/bin/"
AddType application/x-httpd-php .php
<Directory "/home/apt/Working/PHPSource">
Options FollowSymLinks
AllowOverride None
Order allow,deny
Allow from all
Satisfy any
</Directory>
</VirtualHost>
Is there any other solution other than changing
apt directory permission inorder to get solution to this problem.