These are the steps I followed to create a Linux VM on Windows Azure, install nginx and Go on it and serve up a "Hello World" app using FastCGI.
First, I signed up a 3-month trial account on Windows Azure - you will need a Microsoft Account for this.
Next, I created a new Virtual Machine using New -> Compute -> Virtual Machine -> From Gallery.
I selected Ubuntu Server 12.04.1 -
I gave the new VM a name - GoMachine, selected a username and password and hit Next -
Choose Availability Set as None -
Once the VM was provisioned, I SSH'd into it using PuTTy using the credentials I had set earlier -
I installed Go using the command - sudo apt-get install golang-go.
I installed nginx using the command - sudo apt-get install nginx.
Next, I created a directory called fcgi in which I created a file - fcgi.go -
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
package main | |
import ( | |
"fmt" | |
"log" | |
"net" | |
"net/http" | |
"net/http/fcgi" | |
) | |
func main() { | |
l, err := net.Listen("tcp", ":9999") //listen on port 9999 | |
if err != nil { | |
log.Fatal(err) | |
} | |
mux := http.NewServeMux() | |
mux.HandleFunc("/hello", index) | |
fcgi.Serve(l, mux) | |
} | |
func index(w http.ResponseWriter, r *http.Request) { | |
fmt.Fprintf(w, "Hello from Windows Azure! -- The Gopher") | |
} |
I edited the file /etc/nginx/sites-available/default to allow it to serve FastCGI and pointed it to 127.0.0.1:9999 where the fcgi app will listen. The server will also take requests directed to http://gopher.cloudapp.net.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
server { | |
#listen 80; ## listen for ipv4; this line is default and implied | |
#listen [::]:80 default_server ipv6only=on; ## listen for ipv6 | |
root /usr/share/nginx/www; | |
index index.html index.htm; | |
# Make site accessible from http://localhost/ | |
server_name localhost, gopher.cloudapp.net; | |
location / { | |
# First attempt to serve request as file, then | |
# as directory, then fall back to displaying a 404. | |
try_files $uri $uri/ /index.html; | |
# Uncomment to enable naxsi on this location | |
# include /etc/nginx/naxsi.rules | |
fastcgi_pass localhost:9999; | |
include fastcgi_params; | |
} | |
location /doc/ { | |
alias /usr/share/doc/; | |
autoindex on; | |
allow 127.0.0.1; | |
allow ::1; | |
deny all; | |
} | |
} |
To test the app, I typed curl http://localhost/hello. It worked. However, curl http://gopher.cloudapp.net/hello didn't. To make this work, I had to create a new 'endpoint' for the VM in the dashboard -
I clicked on Add Endpoint, and created a new TCP endpoint on Port 80 -
Now, the web app is accessible from the outside world.
Update: - My 3 month trial has expired. So the above URL is not accessible any longer.