I'm using an Ubuntu 14.10 virtual machine located on Azure and I'm accessing it via a PuTTY client. I've installed required software like Nginx and Mono, and I'm trying to host ASP.NET 5 webapp on Ubuntu.
Which IP address can be used instead of domain name (because I don't have one :) ) to test webapp hosted on Ubuntu? I want to access website from anywhere, Windows, my phone, etc.
In one tutorial, these are the Nginx configurations in .conf file
server {
listen 80;
server_name <domain-name> www.<domain.name>;
client_max_body_size 10M;
location / {
proxy_pass http://localhost:5004/;
proxy_redirect off;
proxy_set_header HOST $host;
proxy_buffering off;
}
}
I can't see the website inside Ubuntu because I don't have any kind of GUI installed.