diff --git a/README.md b/README.md index e49bf830d..f9a069da6 100644 --- a/README.md +++ b/README.md @@ -1,6 +1,6 @@ # HermitCore - A lightweight unikernel for a scalable and predictable runtime behavior -[![Build Status](https://travis-ci.org/RWTH-OS/HermitCore.svg?branch=master)](https://travis-ci.org/RWTH-OS/HermitCore) +[![Build Status](https://travis-ci.org/RWTH-OS/HermitCore.svg?branch=devel)](https://travis-ci.org/RWTH-OS/HermitCore) [![Slack Status](https://radiant-ridge-95061.herokuapp.com/badge.svg)](https://radiant-ridge-95061.herokuapp.com) The project [HermitCore]( http://www.hermitcore.org ) is a new diff --git a/usr/tests/server.go b/usr/tests/server.go index 273317adf..545de95fa 100644 --- a/usr/tests/server.go +++ b/usr/tests/server.go @@ -16,12 +16,12 @@ import ( func main() { fmt.Println("This is an \"echo\" server that displays request parameters.") fmt.Println("Start the server and send a http request to it (e.g.") - fmt.Println("curl http://localhost:8000/help). The server uses port 8000.") + fmt.Println("curl http://localhost:80/help). The server uses port 80.") fmt.Println("If KVM is implicitly started by our proxy, please open the port by") - fmt.Println("setting the environment variable HERMIT_APP_PORT to 8000.") + fmt.Println("setting the environment variable HERMIT_APP_PORT to 80.") http.HandleFunc("/", handler) - log.Fatal(http.ListenAndServe(":8000", nil)) + log.Fatal(http.ListenAndServe(":80", nil)) } //!+handler