Reputation: 1
I am able to launch linux ami or ubuntu ami instance on amazon ec2. also able to setup subversion and create repository on it But when i am trying to access it via URL as public dns name provided by amazon ec2 instance into browser but its not showing anything.Even i am not getting any descent step by step guide or tutorial anywhere.Kindly help me or let me know any descent tutorial for setting up subversion repository on ec2 instance.Thanks to all in advance.
Upvotes: 0
Views: 732
Reputation: 30662
You have to either configure Apache HTTP Server to expose your repos via HTTP(S) or configure svnserve
for svn:// or svn+ssh:// scheme access. See SVNBook | Choosing a Server Configuration.
Make sure to allow HTTP(S) or svn:// (port 3690, by default) traffic in "Security Group" settings of your Amazon EC2 machine.
Upvotes: 2