Reword welcome message as little

This commit is contained in:
Kevin van Zonneveld 2016-07-14 15:20:35 +02:00
parent 17b0e99770
commit a7dc6d1aec
1 changed files with 10 additions and 8 deletions

View File

@ -8,24 +8,26 @@ import (
var greeting string var greeting string
func PrepareGreeting() { func PrepareGreeting() {
// @todo: Introduce configurable metrics endpoint.
// See: https://github.com/tus/tusd/issues/52
greeting = fmt.Sprintf( greeting = fmt.Sprintf(
`Welcome to tusd `Welcome to tusd
=============== ===============
Congratulations for setting up tusd! You are now part of the chosen elite and Congratulations on setting up tusd! Thanks for joining our cause, you have taken the first step towards making the future of resumable uploading a reality! We hope you are as excited about this as we are!
able to experience the feeling of resumable uploads! We hope you are as excited
as we are (a lot)!
However, there is something you should be aware of: While you got tusd While you did an awesome job on getting tusd running, this is just the welcome message, so let's talk about the places that really matter:
running (you did an awesome job!), this is the root directory of the server
and tus requests are only accepted at the %s route.
So don't waste time, head over there and experience the future! - %s - send your tus uploads to this endpoint
- %s - gather statistics to keep tusd running smoothly
- https://github.com/tus/tusd/issues - report your bugs here
So quit lollygagging, send over your files and experience the future!
Version = %s Version = %s
GitCommit = %s GitCommit = %s
BuildDate = %s BuildDate = %s
`, Flags.Basepath, VersionName, GitCommit, BuildDate) `, Flags.Basepath, "/metrics", VersionName, GitCommit, BuildDate)
} }
func DisplayGreeting(w http.ResponseWriter, r *http.Request) { func DisplayGreeting(w http.ResponseWriter, r *http.Request) {