[Webteam] squeak.org configured for nginx

Chris Cunnington websela at yahoo.com
Tue Mar 11 13:59:33 UTC 2014


http://box4.squeak.org

I've done the first of two parts. I've changed the config file nginx.conf to proxy to the running image. [1]
In strict terms, since the port number has been removed (i.e. It is no no longer box4.squeak.org:8624) the image is deployed. 
Unfortunately, without a "www" subdomain or no subdomain (i.e. http://squeak.org) not many people are going to find it. 
Thus I now turn to tinydns. When that's done, it's deployed. 

Chris 


[1]

I copied default.conf into default.conf_master.

I then hacked default.conf, which now contains only:


server {
    listen       80;
    server_name  *.squeak.org;


    location / {

		proxy_pass http://127.0.0.1:8624;
		}



}


More information about the Webteam mailing list