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:/Apache24/conf/extra/httpd-vhosts.conf
# Virtual Hosts
#
# Required modules: mod_log_config

# If you want to maintain multiple domains/hostnames on your
# machine you can setup VirtualHost containers for them. Most configurations
# use only name-based virtual hosts so the server doesn't need to worry about
# IP addresses. This is indicated by the asterisks in the directives below.
#
# Please see the documentation at 
# <URL:http://httpd.apache.org/docs/2.4/vhosts/>
# for further details before you try to setup virtual hosts.
#
# You may use the command line option '-S' to verify your virtual host
# configuration.

#
# VirtualHost example:
# Almost any Apache directive may go into a VirtualHost container.
# The first VirtualHost section is used for all requests that do not
# match a ServerName or ServerAlias in any <VirtualHost> block.
#
<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"
		
		#AuthName "Depot Subversion"
		#AuthType Basic
		#AuthBasicProvider file
		#AuthUserFile "C:\UserList\.htpasswd-tous"			
		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>


#<VirtualHost *:443>
#    ServerAdmin webmaster@openopcua.org
#    DocumentRoot "${SRVROOT}/htdocs"
#    ServerName www.openopcua.org
#	SSLEngine On
#	SSLCertificateFile "C:\Certbot\live\www.openopcua.org\cert.pem"
#	SSLCertificateKeyFile "C:\Certbot\live\www.openopcua.org\privkey.pem"
#    ServerAlias wordpress.openopcua.org
#    ErrorLog "logs/error.log"
#    CustomLog "logs/access.log" common
#	<Location /OpenOpcUa>
#		DAV svn
#		SVNParentPath "D:\OpenOpcUa"
#		SVNIndexXSLT "/svnindex.xsl"
		
#		AuthBasicProvider dbd
#		Order deny,allow
#		#Deny from all
#		Satisfy any	
#		AuthType Basic
#		AuthName "Depot Subversion"
#	</Location>	
#</VirtualHost>