How to run VisualSvn Server on port 443 running IIS on same server?
Posted
by
Metro Smurf
on Server Fault
See other posts from Server Fault
or by Metro Smurf
Published on 2011-03-17T05:15:43Z
Indexed on
2011/03/17
8:11 UTC
Read the original article
Hit count: 466
Server 2008 R2 SP1 VisualSvn Server 2.1.6
The IIS server has about 10 sites. One of them uses https over port 443 with the following bindings:
http x.x.x.39:80 site.com
http x.x.x.39:80 www.site.com
https x.x.x.39:443
VisualSvn Server Properties
server name: svn.SomeSite.com
server port: 443
Server Binding: x.x.x.40
No sites on IIS are listening to x.x.x.40.
When starting up VisualSvn server, the following errors are thrown:
- make_sock: could not bind to address x.x.x.40:443 (OS 10013) An attempt was made to access a socket in a way forbidden by its access permissions.
- no listening sockets available, shutting down
When I stop Site.com on IIS, then VisualSvn Server starts up without a problem. When I bind VisualSvn server to port 8443 and start Site.com, then VisualSvn Server starts without a problem.
My goal is to be able to access the VisualSvn Server with a normal url, i.e., one that does't use a port number in the address:
https://svn.site.com vs https://svn.site.com:8443
What needs to be configured to allow VisualSvn Server to run on port 443 with IIS running on the same server?
© Server Fault or respective owner