1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
|
// Copyright 2013 The Go Authors. All rights reserved.
// Use of this source code is governed by a BSD-style
// license that can be found in the LICENSE file.
// +build !appengine
// This file implements a stand-alone blog server.
package main
import (
"flag"
"log"
"net/http"
)
var (
httpAddr = flag.String("http", "localhost:8080", "HTTP listen address")
contentPath = flag.String("content", "content/", "path to content files")
templatePath = flag.String("template", "template/", "path to template files")
staticPath = flag.String("static", "static/", "path to static files")
)
func main() {
flag.Parse()
s, err := NewServer("/", *contentPath, *templatePath)
if err != nil {
log.Fatal(err)
}
http.Handle("/", s)
fs := http.FileServer(http.Dir(*staticPath))
http.Handle("/static/", http.StripPrefix("/static/", fs))
log.Fatal(http.ListenAndServe(*httpAddr, nil))
}
|