aboutsummaryrefslogtreecommitdiff
path: root/appengine.go
diff options
context:
space:
mode:
Diffstat (limited to 'appengine.go')
-rw-r--r--appengine.go13
1 files changed, 9 insertions, 4 deletions
diff --git a/appengine.go b/appengine.go
index 288247e..3b65bc7 100644
--- a/appengine.go
+++ b/appengine.go
@@ -2,27 +2,32 @@
// 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 an App Engine blog server.
package main
import (
+ "log"
"net/http"
+ "os"
"golang.org/x/tools/blog"
)
-func init() {
+func gaeMain() {
config.ContentPath = "content/"
config.TemplatePath = "template/"
s, err := blog.NewServer(config)
if err != nil {
- panic(err)
+ log.Fatalln(err)
}
http.HandleFunc("/", func(w http.ResponseWriter, r *http.Request) {
w.Header().Set("Strict-Transport-Security", "max-age=31536000; preload")
s.ServeHTTP(w, r)
})
+ port := os.Getenv("PORT")
+ if port == "" {
+ port = "8080"
+ }
+ log.Fatal(http.ListenAndServe(":"+port, nil))
}