Hi guys, is there a way to override by ISPConfig the paramenters set in the vhost file like the Directory path and the DocumentRoot: FROM Code: <Directory /var/www/mydomain.com/> AllowOverride None Order Deny,Allow Deny from all </Directory> <VirtualHost *:80> DocumentRoot /var/www/mydomain.com/web/ </VirtualHost> TO Code: <Directory /var/www/mydomain.com/public> AllowOverride None Order Deny,Allow Deny from all </Directory> <VirtualHost *:80> DocumentRoot /var/www/mydomain.com/web/public </VirtualHost>
Have I add these lines in the apache directives? Code: <Directory /var/www/mydomain.com/public> AllowOverride None Order Deny,Allow Deny from all </Directory> DocumentRoot /var/www/mydomain.com/web/public