I run RavenDB as a windows service. How is it serving web pages? I don't see any HTML or ASPX files in the RavenDB folder structure.
Furthermore, when I start the service and run this command:
netstat -an | find "8080"
I get this result:
TCP 0.0.0.0:8080 0.0.0.0:0 LISTENING
TCP [::]:8080 [::]:0 LISTENING
If the windows service is listening on TCP 8080, then why can I access the Raven Studio from a browser via HTTP?
http://server:8080/raven/studio.html
I know I'm missing something fundamental, but I'm not sure how this comes together, and I'd like to know because I think it would help me with how to figure out how to secure the DB and Raven Studio. Can someone explain this?