2014-02-19 02:50:53 -07:00
|
|
|
// Copyright 2014 The Gogs Authors. All rights reserved.
|
|
|
|
// Use of this source code is governed by a MIT-style
|
|
|
|
// license that can be found in the LICENSE file.
|
|
|
|
|
2014-05-01 19:21:46 -06:00
|
|
|
package cmd
|
2014-02-19 02:50:53 -07:00
|
|
|
|
|
|
|
import (
|
|
|
|
"fmt"
|
2014-02-19 12:49:08 -07:00
|
|
|
"html/template"
|
2014-05-27 22:06:31 -06:00
|
|
|
"io/ioutil"
|
2014-02-19 02:50:53 -07:00
|
|
|
"net/http"
|
2014-04-15 18:01:20 -06:00
|
|
|
"os"
|
2014-05-25 18:11:25 -06:00
|
|
|
"path"
|
2014-02-19 02:50:53 -07:00
|
|
|
|
|
|
|
"github.com/codegangsta/cli"
|
2014-03-30 10:11:28 -06:00
|
|
|
"github.com/go-martini/martini"
|
2014-02-19 02:50:53 -07:00
|
|
|
|
2014-03-06 00:21:44 -07:00
|
|
|
"github.com/gogits/gogs/modules/auth"
|
2014-05-05 11:08:01 -06:00
|
|
|
"github.com/gogits/gogs/modules/auth/apiv1"
|
2014-03-23 04:13:23 -06:00
|
|
|
"github.com/gogits/gogs/modules/avatar"
|
2014-03-06 00:21:44 -07:00
|
|
|
"github.com/gogits/gogs/modules/base"
|
2014-03-07 15:22:15 -07:00
|
|
|
"github.com/gogits/gogs/modules/log"
|
2014-03-15 05:01:50 -06:00
|
|
|
"github.com/gogits/gogs/modules/middleware"
|
2014-05-05 00:42:52 -06:00
|
|
|
"github.com/gogits/gogs/modules/middleware/binding"
|
2014-05-25 18:11:25 -06:00
|
|
|
"github.com/gogits/gogs/modules/setting"
|
2014-02-19 02:50:53 -07:00
|
|
|
"github.com/gogits/gogs/routers"
|
2014-03-20 05:50:26 -06:00
|
|
|
"github.com/gogits/gogs/routers/admin"
|
2014-03-29 08:01:52 -06:00
|
|
|
"github.com/gogits/gogs/routers/api/v1"
|
2014-03-19 10:50:44 -06:00
|
|
|
"github.com/gogits/gogs/routers/dev"
|
2014-06-06 23:27:24 -06:00
|
|
|
"github.com/gogits/gogs/routers/org"
|
2014-02-19 19:45:43 -07:00
|
|
|
"github.com/gogits/gogs/routers/repo"
|
2014-02-19 02:50:53 -07:00
|
|
|
"github.com/gogits/gogs/routers/user"
|
|
|
|
)
|
|
|
|
|
|
|
|
var CmdWeb = cli.Command{
|
|
|
|
Name: "web",
|
2014-05-01 19:21:46 -06:00
|
|
|
Usage: "Start Gogs web server",
|
2014-05-04 22:55:17 -06:00
|
|
|
Description: `Gogs web server is the only thing you need to run,
|
2014-03-24 05:36:38 -06:00
|
|
|
and it takes care of all the other things for you`,
|
2014-02-19 02:50:53 -07:00
|
|
|
Action: runWeb,
|
2014-03-13 00:09:36 -06:00
|
|
|
Flags: []cli.Flag{},
|
2014-02-19 02:50:53 -07:00
|
|
|
}
|
|
|
|
|
2014-05-27 22:06:31 -06:00
|
|
|
// checkVersion checks if binary matches the version of temolate files.
|
2014-05-25 18:57:01 -06:00
|
|
|
func checkVersion() {
|
2014-05-27 22:06:31 -06:00
|
|
|
data, err := ioutil.ReadFile(path.Join(setting.StaticRootPath, "templates/VERSION"))
|
2014-05-25 18:57:01 -06:00
|
|
|
if err != nil {
|
2014-05-27 22:06:31 -06:00
|
|
|
log.Fatal("Fail to read 'templates/VERSION': %v", err)
|
2014-05-25 18:57:01 -06:00
|
|
|
}
|
|
|
|
if string(data) != setting.AppVer {
|
2014-05-30 04:34:24 -06:00
|
|
|
log.Fatal("Binary and template file version does not match, did you forget to recompile?")
|
2014-05-25 18:57:01 -06:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2014-03-19 03:31:38 -06:00
|
|
|
func newMartini() *martini.ClassicMartini {
|
|
|
|
r := martini.NewRouter()
|
|
|
|
m := martini.New()
|
|
|
|
m.Use(middleware.Logger())
|
|
|
|
m.Use(martini.Recovery())
|
2014-05-25 18:11:25 -06:00
|
|
|
m.Use(martini.Static(path.Join(setting.StaticRootPath, "public"),
|
|
|
|
martini.StaticOptions{SkipLogging: !setting.DisableRouterLog}))
|
2014-03-19 03:31:38 -06:00
|
|
|
m.MapTo(r, (*martini.Routes)(nil))
|
|
|
|
m.Action(r.Handle)
|
|
|
|
return &martini.ClassicMartini{m, r}
|
|
|
|
}
|
|
|
|
|
2014-02-19 02:50:53 -07:00
|
|
|
func runWeb(*cli.Context) {
|
2014-03-29 15:50:51 -06:00
|
|
|
routers.GlobalInit()
|
2014-05-30 04:34:24 -06:00
|
|
|
checkVersion()
|
2014-02-19 02:50:53 -07:00
|
|
|
|
2014-03-19 03:31:38 -06:00
|
|
|
m := newMartini()
|
2014-02-19 02:50:53 -07:00
|
|
|
|
2014-03-07 15:08:21 -07:00
|
|
|
// Middlewares.
|
2014-05-05 11:08:01 -06:00
|
|
|
m.Use(middleware.Renderer(middleware.RenderOptions{
|
2014-05-25 18:11:25 -06:00
|
|
|
Directory: path.Join(setting.StaticRootPath, "templates"),
|
2014-05-05 11:08:01 -06:00
|
|
|
Funcs: []template.FuncMap{base.TemplateFuncs},
|
|
|
|
IndentJSON: true,
|
|
|
|
}))
|
2014-03-15 05:01:50 -06:00
|
|
|
m.Use(middleware.InitContext())
|
|
|
|
|
2014-03-22 11:44:02 -06:00
|
|
|
reqSignIn := middleware.Toggle(&middleware.ToggleOptions{SignInRequire: true})
|
2014-05-25 18:11:25 -06:00
|
|
|
ignSignIn := middleware.Toggle(&middleware.ToggleOptions{SignInRequire: setting.Service.RequireSignInView})
|
2014-04-16 02:12:31 -06:00
|
|
|
ignSignInAndCsrf := middleware.Toggle(&middleware.ToggleOptions{DisableCsrf: true})
|
2014-04-13 23:57:25 -06:00
|
|
|
|
2014-03-22 11:44:02 -06:00
|
|
|
reqSignOut := middleware.Toggle(&middleware.ToggleOptions{SignOutRequire: true})
|
|
|
|
|
2014-05-05 00:42:52 -06:00
|
|
|
bindIgnErr := binding.BindIgnErr
|
2014-04-10 12:37:43 -06:00
|
|
|
|
2014-02-19 02:50:53 -07:00
|
|
|
// Routers.
|
2014-03-24 09:58:46 -06:00
|
|
|
m.Get("/", ignSignIn, routers.Home)
|
2014-04-10 14:36:50 -06:00
|
|
|
m.Get("/install", bindIgnErr(auth.InstallForm{}), routers.Install)
|
|
|
|
m.Post("/install", bindIgnErr(auth.InstallForm{}), routers.InstallPost)
|
2014-06-05 20:07:35 -06:00
|
|
|
m.Group("", func(r martini.Router) {
|
|
|
|
r.Get("/issues", user.Issues)
|
|
|
|
r.Get("/pulls", user.Pulls)
|
|
|
|
r.Get("/stars", user.Stars)
|
|
|
|
}, reqSignIn)
|
2014-03-29 08:01:52 -06:00
|
|
|
|
2014-06-22 00:10:12 -06:00
|
|
|
m.Group("/api", func(_ martini.Router) {
|
2014-05-21 19:37:13 -06:00
|
|
|
m.Group("/v1", func(r martini.Router) {
|
|
|
|
// Miscellaneous.
|
|
|
|
r.Post("/markdown", bindIgnErr(apiv1.MarkdownForm{}), v1.Markdown)
|
|
|
|
r.Post("/markdown/raw", v1.MarkdownRaw)
|
|
|
|
|
|
|
|
// Users.
|
|
|
|
r.Get("/users/search", v1.SearchUser)
|
|
|
|
|
|
|
|
r.Any("**", func(ctx *middleware.Context) {
|
|
|
|
ctx.JSON(404, &base.ApiJsonErr{"Not Found", v1.DOC_URL})
|
|
|
|
})
|
2014-05-05 11:08:01 -06:00
|
|
|
})
|
2014-03-29 08:01:52 -06:00
|
|
|
})
|
2014-03-22 14:00:46 -06:00
|
|
|
|
2014-03-26 07:26:31 -06:00
|
|
|
avt := avatar.CacheServer("public/img/avatar/", "public/img/avatar_default.jpg")
|
2014-04-15 18:01:20 -06:00
|
|
|
os.MkdirAll("public/img/avatar/", os.ModePerm)
|
2014-03-26 07:26:31 -06:00
|
|
|
m.Get("/avatar/:hash", avt.ServeHTTP)
|
2014-03-23 08:40:35 -06:00
|
|
|
|
2014-03-22 14:00:46 -06:00
|
|
|
m.Group("/user", func(r martini.Router) {
|
2014-05-05 14:21:43 -06:00
|
|
|
r.Get("/login", user.SignIn)
|
2014-04-10 14:36:50 -06:00
|
|
|
r.Post("/login", bindIgnErr(auth.LogInForm{}), user.SignInPost)
|
2014-04-12 09:19:17 -06:00
|
|
|
r.Get("/login/:name", user.SocialSignIn)
|
2014-04-10 14:36:50 -06:00
|
|
|
r.Get("/sign_up", user.SignUp)
|
|
|
|
r.Post("/sign_up", bindIgnErr(auth.RegisterForm{}), user.SignUpPost)
|
|
|
|
r.Get("/reset_password", user.ResetPasswd)
|
|
|
|
r.Post("/reset_password", user.ResetPasswdPost)
|
2014-03-22 14:00:46 -06:00
|
|
|
}, reqSignOut)
|
|
|
|
m.Group("/user", func(r martini.Router) {
|
2014-04-10 14:36:50 -06:00
|
|
|
r.Get("/delete", user.Delete)
|
|
|
|
r.Post("/delete", user.DeletePost)
|
2014-04-23 13:30:18 -06:00
|
|
|
r.Get("/settings", user.Setting)
|
|
|
|
r.Post("/settings", bindIgnErr(auth.UpdateProfileForm{}), user.SettingPost)
|
2014-03-22 14:00:46 -06:00
|
|
|
}, reqSignIn)
|
|
|
|
m.Group("/user", func(r martini.Router) {
|
2014-05-05 00:42:52 -06:00
|
|
|
r.Get("/feeds", binding.Bind(auth.FeedsForm{}), user.Feeds)
|
2014-04-18 10:12:10 -06:00
|
|
|
r.Any("/activate", user.Activate)
|
2014-04-12 18:35:35 -06:00
|
|
|
r.Get("/email2user", user.Email2User)
|
2014-04-10 16:09:57 -06:00
|
|
|
r.Get("/forget_password", user.ForgotPasswd)
|
|
|
|
r.Post("/forget_password", user.ForgotPasswdPost)
|
2014-04-18 19:14:35 -06:00
|
|
|
r.Get("/logout", user.SignOut)
|
2014-03-22 14:00:46 -06:00
|
|
|
})
|
2014-04-23 13:30:18 -06:00
|
|
|
m.Group("/user/settings", func(r martini.Router) {
|
2014-04-13 19:00:12 -06:00
|
|
|
r.Get("/social", user.SettingSocial)
|
2014-04-10 16:09:57 -06:00
|
|
|
r.Get("/password", user.SettingPassword)
|
|
|
|
r.Post("/password", bindIgnErr(auth.UpdatePasswdForm{}), user.SettingPasswordPost)
|
2014-04-10 14:36:50 -06:00
|
|
|
r.Any("/ssh", bindIgnErr(auth.AddSSHKeyForm{}), user.SettingSSHKeys)
|
2014-04-10 16:09:57 -06:00
|
|
|
r.Get("/notification", user.SettingNotification)
|
|
|
|
r.Get("/security", user.SettingSecurity)
|
2014-03-22 14:00:46 -06:00
|
|
|
}, reqSignIn)
|
2014-03-10 02:54:52 -06:00
|
|
|
|
2014-03-18 07:58:58 -06:00
|
|
|
m.Get("/user/:username", ignSignIn, user.Profile)
|
2014-03-07 15:08:21 -07:00
|
|
|
|
2014-04-10 16:09:57 -06:00
|
|
|
m.Group("/repo", func(r martini.Router) {
|
2014-05-05 17:58:13 -06:00
|
|
|
r.Get("/create", repo.Create)
|
2014-05-01 03:44:22 -06:00
|
|
|
r.Post("/create", bindIgnErr(auth.CreateRepoForm{}), repo.CreatePost)
|
|
|
|
r.Get("/migrate", repo.Migrate)
|
|
|
|
r.Post("/migrate", bindIgnErr(auth.MigrateRepoForm{}), repo.MigratePost)
|
2014-04-10 16:09:57 -06:00
|
|
|
}, reqSignIn)
|
2014-03-13 00:08:49 -06:00
|
|
|
|
2014-03-22 11:44:02 -06:00
|
|
|
adminReq := middleware.Toggle(&middleware.ToggleOptions{SignInRequire: true, AdminRequire: true})
|
|
|
|
|
|
|
|
m.Get("/admin", adminReq, admin.Dashboard)
|
2014-03-22 14:00:46 -06:00
|
|
|
m.Group("/admin", func(r martini.Router) {
|
|
|
|
r.Get("/users", admin.Users)
|
|
|
|
r.Get("/repos", admin.Repositories)
|
2014-05-02 20:48:14 -06:00
|
|
|
r.Get("/auths", admin.Auths)
|
2014-06-13 11:01:52 -06:00
|
|
|
r.Get("/config", admin.Config)
|
|
|
|
r.Get("/monitor", admin.Monitor)
|
2014-03-22 14:00:46 -06:00
|
|
|
}, adminReq)
|
|
|
|
m.Group("/admin/users", func(r martini.Router) {
|
2014-04-10 16:09:57 -06:00
|
|
|
r.Get("/new", admin.NewUser)
|
|
|
|
r.Post("/new", bindIgnErr(auth.RegisterForm{}), admin.NewUserPost)
|
|
|
|
r.Get("/:userid", admin.EditUser)
|
|
|
|
r.Post("/:userid", bindIgnErr(auth.AdminEditUserForm{}), admin.EditUserPost)
|
|
|
|
r.Get("/:userid/delete", admin.DeleteUser)
|
2014-03-22 14:00:46 -06:00
|
|
|
}, adminReq)
|
|
|
|
|
2014-05-02 20:48:14 -06:00
|
|
|
m.Group("/admin/auths", func(r martini.Router) {
|
|
|
|
r.Get("/new", admin.NewAuthSource)
|
|
|
|
r.Post("/new", bindIgnErr(auth.AuthenticationForm{}), admin.NewAuthSourcePost)
|
|
|
|
r.Get("/:authid", admin.EditAuthSource)
|
2014-05-05 02:40:25 -06:00
|
|
|
r.Post("/:authid", bindIgnErr(auth.AuthenticationForm{}), admin.EditAuthSourcePost)
|
2014-05-02 20:48:14 -06:00
|
|
|
r.Get("/:authid/delete", admin.DeleteAuthSource)
|
|
|
|
}, adminReq)
|
|
|
|
|
2014-03-27 09:37:33 -06:00
|
|
|
if martini.Env == martini.Dev {
|
|
|
|
m.Get("/template/**", dev.TemplatePreview)
|
|
|
|
}
|
|
|
|
|
2014-05-05 19:36:08 -06:00
|
|
|
reqOwner := middleware.RequireOwner()
|
2014-05-05 17:58:13 -06:00
|
|
|
|
2014-06-06 23:27:24 -06:00
|
|
|
m.Group("/o", func(r martini.Router) {
|
|
|
|
r.Get("/:org", org.Organization)
|
|
|
|
})
|
|
|
|
|
2014-03-22 14:00:46 -06:00
|
|
|
m.Group("/:username/:reponame", func(r martini.Router) {
|
2014-04-12 18:35:35 -06:00
|
|
|
r.Get("/settings", repo.Setting)
|
2014-05-05 17:58:13 -06:00
|
|
|
r.Post("/settings", bindIgnErr(auth.RepoSettingForm{}), repo.SettingPost)
|
2014-05-21 19:37:13 -06:00
|
|
|
|
|
|
|
m.Group("/settings", func(r martini.Router) {
|
|
|
|
r.Get("/collaboration", repo.Collaboration)
|
|
|
|
r.Post("/collaboration", repo.CollaborationPost)
|
|
|
|
r.Get("/hooks", repo.WebHooks)
|
|
|
|
r.Get("/hooks/add", repo.WebHooksAdd)
|
|
|
|
r.Post("/hooks/add", bindIgnErr(auth.NewWebhookForm{}), repo.WebHooksAddPost)
|
|
|
|
r.Get("/hooks/:id", repo.WebHooksEdit)
|
|
|
|
r.Post("/hooks/:id", bindIgnErr(auth.NewWebhookForm{}), repo.WebHooksEditPost)
|
|
|
|
})
|
2014-05-05 19:36:08 -06:00
|
|
|
}, reqSignIn, middleware.RepoAssignment(true), reqOwner)
|
2014-05-05 17:58:13 -06:00
|
|
|
|
|
|
|
m.Group("/:username/:reponame", func(r martini.Router) {
|
2014-05-06 14:28:52 -06:00
|
|
|
r.Get("/action/:action", repo.Action)
|
2014-05-21 19:37:13 -06:00
|
|
|
|
|
|
|
m.Group("/issues", func(r martini.Router) {
|
|
|
|
r.Get("/new", repo.CreateIssue)
|
|
|
|
r.Post("/new", bindIgnErr(auth.CreateIssueForm{}), repo.CreateIssuePost)
|
|
|
|
r.Post("/:index", bindIgnErr(auth.CreateIssueForm{}), repo.UpdateIssue)
|
2014-05-24 00:31:58 -06:00
|
|
|
r.Post("/:index/label", repo.UpdateIssueLabel)
|
2014-05-21 19:37:13 -06:00
|
|
|
r.Post("/:index/milestone", repo.UpdateIssueMilestone)
|
2014-05-24 00:31:58 -06:00
|
|
|
r.Post("/:index/assignee", repo.UpdateAssignee)
|
2014-05-21 19:37:13 -06:00
|
|
|
r.Post("/labels/new", bindIgnErr(auth.CreateLabelForm{}), repo.NewLabel)
|
2014-05-24 00:31:58 -06:00
|
|
|
r.Post("/labels/edit", bindIgnErr(auth.CreateLabelForm{}), repo.UpdateLabel)
|
|
|
|
r.Post("/labels/delete", repo.DeleteLabel)
|
2014-05-21 19:37:13 -06:00
|
|
|
r.Get("/milestones", repo.Milestones)
|
|
|
|
r.Get("/milestones/new", repo.NewMilestone)
|
|
|
|
r.Post("/milestones/new", bindIgnErr(auth.CreateMilestoneForm{}), repo.NewMilestonePost)
|
|
|
|
r.Get("/milestones/:index/edit", repo.UpdateMilestone)
|
|
|
|
r.Post("/milestones/:index/edit", bindIgnErr(auth.CreateMilestoneForm{}), repo.UpdateMilestonePost)
|
|
|
|
r.Get("/milestones/:index/:action", repo.UpdateMilestone)
|
|
|
|
})
|
|
|
|
|
2014-03-26 10:31:01 -06:00
|
|
|
r.Post("/comment/:action", repo.Comment)
|
2014-06-12 15:47:23 -06:00
|
|
|
r.Get("/releases/new", repo.NewRelease)
|
|
|
|
r.Get("/releases/edit/:tagname", repo.EditRelease)
|
2014-03-22 14:00:46 -06:00
|
|
|
}, reqSignIn, middleware.RepoAssignment(true))
|
2014-03-29 20:06:53 -06:00
|
|
|
|
2014-04-13 23:57:25 -06:00
|
|
|
m.Group("/:username/:reponame", func(r martini.Router) {
|
2014-06-12 15:47:23 -06:00
|
|
|
r.Post("/releases/new", bindIgnErr(auth.NewReleaseForm{}), repo.NewReleasePost)
|
|
|
|
r.Post("/releases/edit/:tagname", bindIgnErr(auth.EditReleaseForm{}), repo.EditReleasePost)
|
2014-04-13 23:57:25 -06:00
|
|
|
}, reqSignIn, middleware.RepoAssignment(true, true))
|
|
|
|
|
2014-03-22 14:00:46 -06:00
|
|
|
m.Group("/:username/:reponame", func(r martini.Router) {
|
|
|
|
r.Get("/issues", repo.Issues)
|
2014-03-23 17:09:11 -06:00
|
|
|
r.Get("/issues/:index", repo.ViewIssue)
|
2014-03-22 14:00:46 -06:00
|
|
|
r.Get("/pulls", repo.Pulls)
|
|
|
|
r.Get("/branches", repo.Branches)
|
2014-03-29 23:30:17 -06:00
|
|
|
}, ignSignIn, middleware.RepoAssignment(true))
|
|
|
|
|
|
|
|
m.Group("/:username/:reponame", func(r martini.Router) {
|
2014-03-22 14:00:46 -06:00
|
|
|
r.Get("/src/:branchname", repo.Single)
|
|
|
|
r.Get("/src/:branchname/**", repo.Single)
|
2014-03-24 09:56:32 -06:00
|
|
|
r.Get("/raw/:branchname/**", repo.SingleDownload)
|
2014-03-22 14:00:46 -06:00
|
|
|
r.Get("/commits/:branchname", repo.Commits)
|
2014-04-11 17:44:13 -06:00
|
|
|
r.Get("/commits/:branchname/search", repo.SearchCommits)
|
2014-05-12 18:22:35 -06:00
|
|
|
r.Get("/commits/:branchname/**", repo.FileHistory)
|
2014-03-29 23:30:17 -06:00
|
|
|
r.Get("/commit/:branchname", repo.Diff)
|
|
|
|
r.Get("/commit/:branchname/**", repo.Diff)
|
2014-04-13 23:57:25 -06:00
|
|
|
r.Get("/releases", repo.Releases)
|
2014-04-15 10:27:29 -06:00
|
|
|
r.Get("/archive/:branchname/:reponame.zip", repo.ZipDownload)
|
2014-05-16 11:41:08 -06:00
|
|
|
r.Get("/archive/:branchname/:reponame.tar.gz", repo.TarGzDownload)
|
2014-03-29 23:30:17 -06:00
|
|
|
}, ignSignIn, middleware.RepoAssignment(true, true))
|
2014-03-22 14:00:46 -06:00
|
|
|
|
|
|
|
m.Group("/:username", func(r martini.Router) {
|
2014-03-29 23:30:17 -06:00
|
|
|
r.Get("/:reponame", middleware.RepoAssignment(true, true, true), repo.Single)
|
2014-04-11 19:47:39 -06:00
|
|
|
r.Any("/:reponame/**", repo.Http)
|
2014-04-10 08:12:32 -06:00
|
|
|
}, ignSignInAndCsrf)
|
2014-03-21 10:48:26 -06:00
|
|
|
|
2014-03-23 04:27:01 -06:00
|
|
|
// Not found handler.
|
2014-03-22 23:48:01 -06:00
|
|
|
m.NotFound(routers.NotFound)
|
|
|
|
|
2014-05-25 18:11:25 -06:00
|
|
|
var err error
|
|
|
|
listenAddr := fmt.Sprintf("%s:%s", setting.HttpAddr, setting.HttpPort)
|
|
|
|
log.Info("Listen: %v://%s", setting.Protocol, listenAddr)
|
|
|
|
switch setting.Protocol {
|
|
|
|
case setting.HTTP:
|
|
|
|
err = http.ListenAndServe(listenAddr, m)
|
|
|
|
case setting.HTTPS:
|
|
|
|
err = http.ListenAndServeTLS(listenAddr, setting.CertFile, setting.KeyFile, m)
|
|
|
|
default:
|
|
|
|
log.Fatal("Invalid protocol: %s", setting.Protocol)
|
|
|
|
}
|
|
|
|
|
|
|
|
if err != nil {
|
|
|
|
log.Fatal("Fail to start server: %v", err)
|
2014-03-18 07:58:58 -06:00
|
|
|
}
|
2014-02-19 02:50:53 -07:00
|
|
|
}
|