Skip to content

Instantly share code, notes, and snippets.

@muhfaris
Created April 21, 2018 06:25
Show Gist options
  • Save muhfaris/fe420cd6c04fb542489f74b2a35f7793 to your computer and use it in GitHub Desktop.
Save muhfaris/fe420cd6c04fb542489f74b2a35f7793 to your computer and use it in GitHub Desktop.
package main
import (
"fmt"
"net/http"
)
func main() {
fmt.Printf("Please input which directory\nwhat you want to share, start with \"/\":\n")
h := http.FileServer(http.Dir("/usr/share/nginx/html/app"))
http.ListenAndServe(":1234", h)
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment