HEX
Server: Apache
System: Windows NT MAGNETO-ARM 10.0 build 22000 (Windows 10) AMD64
User: Michel (0)
PHP: 7.4.7
Disabled: NONE
Upload Files
File: C:/Users/Michel/Documents/configNote.txt
<VirtualHost *:80>
    ServerAdmin webmaster@openopcua.org
    DocumentRoot "${SRVROOT}/htdocs"
    ServerName www.openopcua.org
    #ServerName openopcua.org
    ServerAlias wordpress.openopcua.org
    ErrorLog "logs/error.log"
    CustomLog "logs/access.log" common
	#<Location /OpenOpcUa>
	<Location /OpenOpcUa>
		DAV svn
		#SVNPATH "C:\OpenOpcUa"
		SVNListParentPath on
		SVNParentPath "c:\OpenOpcUa"
		SVNIndexXSLT "/svnindex.xsl"
		AuthzSVNAccessFile "C:\OpenOpcUa\conf\users"
		AuthName "Depot Subversion"
		AuthType Basic
		#AuthBasicProvider file
		AuthUserFile "C:\UserList\.htpasswd-tous"
		#Order deny,allow
		#Deny from all
		#Satisfy any	
		# option fcgi
		# AddHandler fastcgi-script fcgi
 	    # Options +FollowSymLinks +ExecCGI
	    # RewriteEngine On
	    # RewriteCond %{REQUEST_FILENAME} !-f
	    # RewriteRule ^(.*)$ dispatch.fcgi		
		# end option fcgi
		Require valid-user
	</Location>	
</VirtualHost>



WRONG 
<VirtualHost *:80>
    ServerAdmin webmaster@openopcua.org
    DocumentRoot "${SRVROOT}/htdocs"
    ServerName www.openopcua.org
    ServerAlias wordpress.openopcua.org
    ErrorLog "logs/error.log"
    CustomLog "logs/access.log" common
	<Location /OpenOpcUa>
		DAV svn
		SVNListParentPath On
		SVNParentPath "C:\OpenOpcUa"
		SVNIndexXSLT "/svnindex.xsl"
		
		AuthzSVNAccessFile "C:\OpenOpcUa\conf\users"
		AuthName "Depot Subversion"
		AuthType Basic
		#AuthBasicProvider file
		AuthUserFile "C:\UserList\.htpasswd-tous"	
		
		#AuthBasicProvider dbd
		Order allow,deny
		Allow from all
		#Deny from all
		Satisfy any	
		# option fcgi
		# AddHandler fastcgi-script fcgi
 	    # Options +FollowSymLinks +ExecCGI
	    # RewriteEngine On
	    # RewriteCond %{REQUEST_FILENAME} !-f
	    # RewriteRule ^(.*)$ dispatch.fcgi		
		# end option fcgi
		#AuthType Basic
		#AuthName "Depot Subversion"
		Require valid-user
	</Location>	
</VirtualHost>

UNSECURE OK
<VirtualHost *:80>
    ServerAdmin webmaster@openopcua.org
    DocumentRoot "${SRVROOT}/htdocs"
    ServerName www.openopcua.org
    ServerAlias wordpress.openopcua.org
    ErrorLog "logs/error.log"
    CustomLog "logs/access.log" common
	<Location /OpenOpcUa>
		DAV svn
		SVNListParentPath On
		SVNParentPath "C:\OpenOpcUa"
		SVNIndexXSLT "/svnindex.xsl"
		
		AuthBasicProvider dbd
		Order allow,deny
		Allow from all
		#Deny from all
		Satisfy any	
		# option fcgi
		# AddHandler fastcgi-script fcgi
 	    # Options +FollowSymLinks +ExecCGI
	    # RewriteEngine On
	    # RewriteCond %{REQUEST_FILENAME} !-f
	    # RewriteRule ^(.*)$ dispatch.fcgi		
		# end option fcgi
		AuthType Basic
		AuthName "Depot Subversion"
	</Location>	
</VirtualHost>