From single host to multihost permission mod_rewrite errors

hi everyone,

been reconfiguring my server from single host to multihost (website + nextcloud) resolved the directory permissions for my Joomla directory, enabled AllowOverwrite All and so far so good with Joomla but now I have an error when accessing my nextcloud directory due to rewrite rules.

[Sun Jul 10 16:19:47.383009 2016] [rewrite:error] [pid 4159] [client 82.95.81.XXX:59157] AH00670: Options FollowSymLinks and SymLinksIfOwnerMatch are both off, so the RewriteRule directive is also forbidden due to its similar ability to circumvent directory restrictions : /srv/www/htdocs/nextcloud/, referer: https://cloud.fred-dresken.nl/

vhosts config for nextcloud:

Options FollowSymLinks
    
	#
	# AllowOverride controls what directives may be placed in .htaccess files.
	# It can be "All", "None", or any combination of the keywords:
	#   Options FileInfo AuthConfig Limit
	#
	AllowOverride All
    
	#
	# Controls who can get stuff from this server.
	#
	<IfModule !mod_access_compat.c>
	    Require all granted
	</IfModule>
	<IfModule mod_access_compat.c>
	    Order allow,deny
	    Allow from all
	</IfModule>
	
	<IfModule mod_dav.c>
    Dav off
    </IfModule>
    
    SetEnv HOME /srv/www/htdocs/nextcloud
    SetEnv HTTP_HOME /srv/www/htdocs/nextcloud

I’m missing something but can’t find/see the solution…
Running Apache2 on openSUSE Leap

Any suggestions are welcome :slight_smile:

too simple… SOLVED!!