svniis: Help

HomePage :: Screendumps :: Examples :: Download :: Revisions :: Help :: Donate :: Contact
1. Installing SvnProxy on the server
 

More screen dumps will be placed, if available.

 

When SvnProxy is installed, check its version number by using the
'__version' path (two underscore chars) for example:

http://svn.somedomain.com/__version

A webpage will be displayed showing its version number.
Try it on the live repository:

http://svn.svniis.org/__version

2. Configure web.config file

There are 4 values for configuring the SvnProxy.
The ApacheServerName and ApacheServerPort must reference the server which runs Apache and serves the SVN repository.
For logging, a location of the logfile can be specified. If not needed, this value can be left empty.
If Apache is using Virtual hosts, use a specific name on the ApacheVirtualHostServerName field.
If there are no Virtual hosts on the Apache configured, the same name as ApacheServerName is used.

<configuration>
..... <applicationSettings>
		<SvnProxy.Properties.Settings>
			<setting name="ApacheServerName" serializeAs="String">
				<value>localhost</value>
</setting>
<setting name="ApacheServerPort" serializeAs="String"> <value>8080</value>
</setting>
<setting name="ProxyLogFile" serializeAs="String"> <value>d:\temp\svn-proxy-log.txt</value>
			</setting>
<setting name="ApacheVirtualHostServerName" serializeAs="String">
<value>localhost</value>
</setting> </SvnProxy.Properties.Settings> </applicationSettings> </configuration>

3. Install and configuration of Apache