How to make an MVC 6 application available (AspNet 5)

3

I worked with ASP.NET for a while and I do not have much knowledge on the infrastructure part, I always published my apps through visual studio and then on the server, I added a new application through IIS, but all that changed in ASP. NET 5 (Vnext), my question is how can I make a link available for my clients to access.

    
asked by anonymous 13.05.2015 / 13:16

1 answer

1

ONE OF THE METHODS BELOW:

  • 1 - Use IIS, put the application in the folder C: \ inetpub
  • 2 - Go to your router, and point port 80 to the ip of your machine (to find out your ip, open cmd, and type ipconfig, and check the line ipv4) suppose that your internal ip of your machine is 192.168.1.100, then you will point port 80 for this ip.
  • 3 - check what is your ip externoo site www.meuip.com.br shows what is your external ip.
  • 4 - assuming your external ip is 999,999,999,999, then you go 999,999,999,999:80, and he would have access your application.

IMPORTANT DETAIL, IF YOUR IP IS DYNAMIC, YOU MUST ALWAYS VERIFY WHAT YOUR IP IS BEFORE PROVIDING THE IP FOR THE CUSTOMER anything we are here ..: D

    
27.10.2015 / 20:50