gitea/cmd/web.go

427 lines
15 KiB
Go
Raw Normal View History

2014-02-19 10:50:53 +01: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-02 03:21:46 +02:00
package cmd
2014-02-19 10:50:53 +01:00
import (
"fmt"
2014-02-19 20:49:08 +01:00
"html/template"
"io/ioutil"
2014-02-19 10:50:53 +01:00
"net/http"
2014-04-16 02:01:20 +02:00
"os"
2014-05-26 02:11:25 +02:00
"path"
2014-09-29 11:38:46 +02:00
"strings"
2014-02-19 10:50:53 +01:00
2014-07-26 06:24:27 +02:00
"github.com/Unknwon/macaron"
2014-02-19 10:50:53 +01:00
"github.com/codegangsta/cli"
2014-10-15 17:19:20 +02:00
"github.com/macaron-contrib/binding"
"github.com/macaron-contrib/cache"
"github.com/macaron-contrib/captcha"
"github.com/macaron-contrib/csrf"
2014-07-26 06:24:27 +02:00
"github.com/macaron-contrib/i18n"
"github.com/macaron-contrib/session"
2014-08-06 23:21:24 +02:00
"github.com/macaron-contrib/toolbox"
2014-02-19 10:50:53 +01:00
2014-08-06 23:21:24 +02:00
"github.com/gogits/gogs/models"
2014-03-06 08:21:44 +01:00
"github.com/gogits/gogs/modules/auth"
2014-05-05 19:08:01 +02:00
"github.com/gogits/gogs/modules/auth/apiv1"
2014-03-23 11:13:23 +01:00
"github.com/gogits/gogs/modules/avatar"
2014-03-06 08:21:44 +01:00
"github.com/gogits/gogs/modules/base"
2014-09-29 11:38:46 +02:00
"github.com/gogits/gogs/modules/git"
2014-03-07 23:22:15 +01:00
"github.com/gogits/gogs/modules/log"
"github.com/gogits/gogs/modules/middleware"
2014-05-26 02:11:25 +02:00
"github.com/gogits/gogs/modules/setting"
2014-02-19 10:50:53 +01:00
"github.com/gogits/gogs/routers"
2014-03-20 12:50:26 +01:00
"github.com/gogits/gogs/routers/admin"
2014-03-29 15:01:52 +01:00
"github.com/gogits/gogs/routers/api/v1"
2014-03-19 17:50:44 +01:00
"github.com/gogits/gogs/routers/dev"
"github.com/gogits/gogs/routers/org"
2014-02-20 03:45:43 +01:00
"github.com/gogits/gogs/routers/repo"
2014-02-19 10:50:53 +01:00
"github.com/gogits/gogs/routers/user"
)
var CmdWeb = cli.Command{
Name: "web",
2014-05-02 03:21:46 +02:00
Usage: "Start Gogs web server",
Description: `Gogs web server is the only thing you need to run,
2014-03-24 12:36:38 +01:00
and it takes care of all the other things for you`,
2014-02-19 10:50:53 +01:00
Action: runWeb,
2014-03-13 07:09:36 +01:00
Flags: []cli.Flag{},
2014-02-19 10:50:53 +01:00
}
// checkVersion checks if binary matches the version of templates files.
2014-05-26 02:57:01 +02:00
func checkVersion() {
2014-09-28 07:38:25 +02:00
// Templates.
2014-07-26 06:24:27 +02:00
data, err := ioutil.ReadFile(path.Join(setting.StaticRootPath, "templates/.VERSION"))
2014-05-26 02:57:01 +02:00
if err != nil {
2014-07-26 06:24:27 +02:00
log.Fatal(4, "Fail to read 'templates/.VERSION': %v", err)
2014-05-26 02:57:01 +02:00
}
if string(data) != setting.AppVer {
2014-07-26 06:24:27 +02:00
log.Fatal(4, "Binary and template file version does not match, did you forget to recompile?")
2014-05-26 02:57:01 +02:00
}
2014-09-28 07:38:25 +02:00
2014-10-07 01:12:52 +02:00
// Check dependency version.
2014-09-29 11:38:46 +02:00
macaronVer := git.MustParseVersion(strings.Join(strings.Split(macaron.Version(), ".")[:3], "."))
2014-10-14 00:04:07 +02:00
if macaronVer.LessThan(git.MustParseVersion("0.2.3")) {
2014-10-10 12:15:27 +02:00
log.Fatal(4, "Package macaron version is too old, did you forget to update?(github.com/Unknwon/macaron)")
2014-10-07 01:12:52 +02:00
}
i18nVer := git.MustParseVersion(i18n.Version())
2014-10-10 00:35:09 +02:00
if i18nVer.LessThan(git.MustParseVersion("0.0.2")) {
2014-10-10 12:15:27 +02:00
log.Fatal(4, "Package i18n version is too old, did you forget to update?(github.com/macaron-contrib/i18n)")
}
sessionVer := git.MustParseVersion(session.Version())
2014-10-19 05:26:55 +02:00
if sessionVer.LessThan(git.MustParseVersion("0.0.3")) {
2014-10-10 12:15:27 +02:00
log.Fatal(4, "Package session version is too old, did you forget to update?(github.com/macaron-contrib/session)")
2014-09-28 07:38:25 +02:00
}
2014-05-26 02:57:01 +02:00
}
2014-07-26 06:24:27 +02:00
// newMacaron initializes Macaron instance.
func newMacaron() *macaron.Macaron {
m := macaron.New()
m.Use(macaron.Logger())
m.Use(macaron.Recovery())
2014-10-14 00:04:07 +02:00
if setting.EnableGzip {
m.Use(macaron.Gziper())
}
2014-09-15 23:23:58 +02:00
m.Use(macaron.Static(
path.Join(setting.StaticRootPath, "public"),
2014-07-26 06:24:27 +02:00
macaron.StaticOptions{
SkipLogging: !setting.DisableRouterLog,
},
))
m.Use(macaron.Renderer(macaron.RenderOptions{
Directory: path.Join(setting.StaticRootPath, "templates"),
Funcs: []template.FuncMap{base.TemplateFuncs},
IndentJSON: macaron.Env != macaron.PROD,
}))
2014-08-06 23:21:24 +02:00
m.Use(i18n.I18n(i18n.Options{
2014-10-10 00:35:09 +02:00
SubURL: setting.AppSubUrl,
Directory: path.Join(setting.ConfRootPath, "locale"),
CustomDirectory: path.Join(setting.CustomPath, "conf/locale"),
Langs: setting.Langs,
Names: setting.Names,
Redirect: true,
2014-07-26 06:24:27 +02:00
}))
m.Use(cache.Cacher(cache.Options{
Adapter: setting.CacheAdapter,
Interval: setting.CacheInternal,
Conn: setting.CacheConn,
}))
2014-09-20 02:11:34 +02:00
m.Use(captcha.Captchaer(captcha.Options{
SubURL: setting.AppSubUrl,
}))
2014-07-26 06:24:27 +02:00
m.Use(session.Sessioner(session.Options{
Provider: setting.SessionProvider,
Config: *setting.SessionConfig,
}))
m.Use(csrf.Generate(csrf.Options{
2014-09-21 18:22:50 +02:00
Secret: setting.SecretKey,
SetCookie: true,
Header: "X-Csrf-Token",
CookiePath: setting.AppSubUrl,
}))
2014-08-06 23:21:24 +02:00
m.Use(toolbox.Toolboxer(m, toolbox.Options{
HealthCheckFuncs: []*toolbox.HealthCheckFuncDesc{
&toolbox.HealthCheckFuncDesc{
Desc: "Database connection",
Func: models.Ping,
},
},
}))
2014-08-07 12:40:05 +02:00
m.Use(middleware.Contexter())
2014-07-26 06:24:27 +02:00
return m
2014-03-19 10:31:38 +01:00
}
2014-02-19 10:50:53 +01:00
func runWeb(*cli.Context) {
routers.GlobalInit()
2014-05-30 12:34:24 +02:00
checkVersion()
2014-02-19 10:50:53 +01:00
2014-07-26 06:24:27 +02:00
m := newMacaron()
2014-03-22 18:44:02 +01:00
reqSignIn := middleware.Toggle(&middleware.ToggleOptions{SignInRequire: true})
2014-05-26 02:11:25 +02:00
ignSignIn := middleware.Toggle(&middleware.ToggleOptions{SignInRequire: setting.Service.RequireSignInView})
2014-04-16 10:12:31 +02:00
ignSignInAndCsrf := middleware.Toggle(&middleware.ToggleOptions{DisableCsrf: true})
2014-03-22 18:44:02 +01:00
reqSignOut := middleware.Toggle(&middleware.ToggleOptions{SignOutRequire: true})
2014-05-05 08:42:52 +02:00
bindIgnErr := binding.BindIgnErr
2014-04-10 20:37:43 +02:00
2014-02-19 10:50:53 +01:00
// Routers.
2014-03-24 16:58:46 +01:00
m.Get("/", ignSignIn, routers.Home)
2014-09-15 16:09:17 +02:00
m.Get("/explore", ignSignIn, routers.Explore)
m.Get("/install", bindIgnErr(auth.InstallForm{}), routers.Install)
m.Post("/install", bindIgnErr(auth.InstallForm{}), routers.InstallPost)
2014-10-25 00:43:17 +02:00
m.Group("", func() {
m.Get("/pulls", user.Pulls)
m.Get("/issues", user.Issues)
2014-06-06 04:07:35 +02:00
}, reqSignIn)
2014-03-29 15:01:52 +01:00
2014-07-26 06:24:27 +02:00
// API routers.
2014-10-25 00:43:17 +02:00
m.Group("/api", func() {
m.Group("/v1", func() {
2014-05-22 03:37:13 +02:00
// Miscellaneous.
2014-10-25 00:43:17 +02:00
m.Post("/markdown", bindIgnErr(apiv1.MarkdownForm{}), v1.Markdown)
m.Post("/markdown/raw", v1.MarkdownRaw)
2014-05-22 03:37:13 +02:00
// Users.
2014-10-25 00:43:17 +02:00
m.Group("/users", func() {
m.Get("/search", v1.SearchUsers)
2014-08-29 11:31:53 +02:00
})
2014-07-12 06:55:19 +02:00
// Repositories.
2014-10-25 00:43:17 +02:00
m.Group("/repos", func() {
m.Get("/search", v1.SearchRepos)
m.Post("/migrate", bindIgnErr(auth.MigrateRepoForm{}), v1.Migrate)
2014-08-29 11:31:53 +02:00
})
2014-05-22 03:37:13 +02:00
2014-10-25 00:43:17 +02:00
m.Any("/*", func(ctx *middleware.Context) {
2014-05-22 03:37:13 +02:00
ctx.JSON(404, &base.ApiJsonErr{"Not Found", v1.DOC_URL})
})
2014-05-05 19:08:01 +02:00
})
2014-03-29 15:01:52 +01:00
})
2014-03-22 21:00:46 +01:00
2014-07-26 06:24:27 +02:00
// User routers.
2014-10-25 00:43:17 +02:00
m.Group("/user", func() {
m.Get("/login", user.SignIn)
m.Post("/login", bindIgnErr(auth.SignInForm{}), user.SignInPost)
m.Get("/login/:name", user.SocialSignIn)
m.Get("/sign_up", user.SignUp)
m.Post("/sign_up", bindIgnErr(auth.RegisterForm{}), user.SignUpPost)
m.Get("/reset_password", user.ResetPasswd)
m.Post("/reset_password", user.ResetPasswdPost)
2014-03-22 21:00:46 +01:00
}, reqSignOut)
2014-10-25 00:43:17 +02:00
m.Group("/user/settings", func() {
m.Get("", user.Settings)
m.Post("", bindIgnErr(auth.UpdateProfileForm{}), user.SettingsPost)
m.Get("/password", user.SettingsPassword)
m.Post("/password", bindIgnErr(auth.ChangePasswordForm{}), user.SettingsPasswordPost)
m.Get("/ssh", user.SettingsSSHKeys)
m.Post("/ssh", bindIgnErr(auth.AddSSHKeyForm{}), user.SettingsSSHKeysPost)
m.Get("/social", user.SettingsSocial)
m.Route("/delete", "GET,POST", user.SettingsDelete)
2014-03-22 21:00:46 +01:00
}, reqSignIn)
2014-10-25 00:43:17 +02:00
m.Group("/user", func() {
2014-07-26 06:24:27 +02:00
// r.Get("/feeds", binding.Bind(auth.FeedsForm{}), user.Feeds)
2014-10-25 00:43:17 +02:00
m.Any("/activate", user.Activate)
m.Get("/email2user", user.Email2User)
m.Get("/forget_password", user.ForgotPasswd)
m.Post("/forget_password", user.ForgotPasswdPost)
m.Get("/logout", user.SignOut)
2014-03-22 21:00:46 +01:00
})
2014-03-10 09:54:52 +01:00
2014-09-25 22:36:19 +02:00
// FIXME: Legacy
m.Get("/user/:username", ignSignIn, user.Profile)
2014-07-26 06:24:27 +02:00
// Gravatar service.
avt := avatar.CacheServer("public/img/avatar/", "public/img/avatar_default.jpg")
os.MkdirAll("public/img/avatar/", os.ModePerm)
m.Get("/avatar/:hash", avt.ServeHTTP)
2014-03-22 18:44:02 +01:00
adminReq := middleware.Toggle(&middleware.ToggleOptions{SignInRequire: true, AdminRequire: true})
2014-10-25 00:43:17 +02:00
m.Group("/admin", func() {
2014-08-29 14:50:43 +02:00
m.Get("", adminReq, admin.Dashboard)
2014-10-25 00:43:17 +02:00
m.Get("/config", admin.Config)
m.Get("/monitor", admin.Monitor)
m.Group("/users", func() {
m.Get("", admin.Users)
m.Get("/new", admin.NewUser)
m.Post("/new", bindIgnErr(auth.RegisterForm{}), admin.NewUserPost)
m.Get("/:userid", admin.EditUser)
m.Post("/:userid", bindIgnErr(auth.AdminEditUserForm{}), admin.EditUserPost)
m.Post("/:userid/delete", admin.DeleteUser)
2014-08-29 14:50:43 +02:00
})
2014-10-25 00:43:17 +02:00
m.Group("/orgs", func() {
m.Get("", admin.Organizations)
2014-08-29 14:50:43 +02:00
})
2014-10-25 00:43:17 +02:00
m.Group("/repos", func() {
m.Get("", admin.Repositories)
2014-08-29 14:50:43 +02:00
})
2014-10-25 00:43:17 +02:00
m.Group("/auths", func() {
m.Get("", admin.Authentications)
m.Get("/new", admin.NewAuthSource)
m.Post("/new", bindIgnErr(auth.AuthenticationForm{}), admin.NewAuthSourcePost)
m.Get("/:authid", admin.EditAuthSource)
m.Post("/:authid", bindIgnErr(auth.AuthenticationForm{}), admin.EditAuthSourcePost)
m.Post("/:authid/delete", admin.DeleteAuthSource)
2014-08-29 14:50:43 +02:00
})
2014-10-09 00:29:18 +02:00
2014-10-25 00:43:17 +02:00
m.Group("/notices", func() {
m.Get("", admin.Notices)
m.Get("/:id:int/delete", admin.DeleteNotice)
2014-10-09 00:29:18 +02:00
})
2014-05-03 04:48:14 +02:00
}, adminReq)
2014-07-12 06:55:19 +02:00
m.Get("/:username", ignSignIn, user.Profile)
2014-07-26 06:24:27 +02:00
if macaron.Env == macaron.DEV {
m.Get("/template/*", dev.TemplatePreview)
2014-03-27 16:37:33 +01:00
}
reqTrueOwner := middleware.RequireTrueOwner()
// Organization routers.
2014-10-25 00:43:17 +02:00
m.Group("/org", func() {
m.Get("/create", org.Create)
m.Post("/create", bindIgnErr(auth.CreateOrgForm{}), org.CreatePost)
m.Group("/:org", func() {
m.Get("/dashboard", user.Dashboard)
m.Get("/members", org.Members)
m.Get("/members/action/:action", org.MembersAction)
m.Get("/teams", org.Teams)
m.Get("/teams/:team", org.TeamMembers)
m.Get("/teams/:team/repositories", org.TeamRepositories)
m.Get("/teams/:team/action/:action", org.TeamsAction)
m.Get("/teams/:team/action/repo/:action", org.TeamsRepoAction)
2014-08-14 08:12:21 +02:00
}, middleware.OrgAssignment(true, true))
2014-10-25 00:43:17 +02:00
m.Group("/:org", func() {
m.Get("/teams/new", org.NewTeam)
m.Post("/teams/new", bindIgnErr(auth.CreateTeamForm{}), org.NewTeamPost)
m.Get("/teams/:team/edit", org.EditTeam)
m.Post("/teams/:team/edit", bindIgnErr(auth.CreateTeamForm{}), org.EditTeamPost)
m.Post("/teams/:team/delete", org.DeleteTeam)
m.Group("/settings", func() {
m.Get("", org.Settings)
m.Post("", bindIgnErr(auth.UpdateOrgSettingForm{}), org.SettingsPost)
m.Get("/hooks", org.SettingsHooks)
m.Get("/hooks/new", repo.WebHooksNew)
m.Post("/hooks/gogs/new", bindIgnErr(auth.NewWebhookForm{}), repo.WebHooksNewPost)
m.Post("/hooks/slack/new", bindIgnErr(auth.NewSlackHookForm{}), repo.SlackHooksNewPost)
m.Get("/hooks/:id", repo.WebHooksEdit)
m.Post("/hooks/gogs/:id", bindIgnErr(auth.NewWebhookForm{}), repo.WebHooksEditPost)
m.Post("/hooks/slack/:id", bindIgnErr(auth.NewSlackHookForm{}), repo.SlackHooksEditPost)
m.Route("/delete", "GET,POST", org.SettingsDelete)
2014-08-14 08:12:21 +02:00
})
2014-10-25 00:43:17 +02:00
m.Route("/invitations/new", "GET,POST", org.Invitation)
}, middleware.OrgAssignment(true, true, true))
}, reqSignIn)
2014-10-25 00:43:17 +02:00
m.Group("/org", func() {
m.Get("/:org", org.Home)
2014-08-27 10:39:36 +02:00
}, middleware.OrgAssignment(true))
// Repository routers.
2014-10-25 00:43:17 +02:00
m.Group("/repo", func() {
m.Get("/create", repo.Create)
m.Post("/create", bindIgnErr(auth.CreateRepoForm{}), repo.CreatePost)
m.Get("/migrate", repo.Migrate)
m.Post("/migrate", bindIgnErr(auth.MigrateRepoForm{}), repo.MigratePost)
}, reqSignIn)
2014-10-25 00:43:17 +02:00
m.Group("/:username/:reponame", func() {
m.Get("/settings", repo.Settings)
m.Post("/settings", bindIgnErr(auth.RepoSettingForm{}), repo.SettingsPost)
m.Group("/settings", func() {
m.Route("/collaboration", "GET,POST", repo.SettingsCollaboration)
m.Get("/hooks", repo.Webhooks)
m.Get("/hooks/new", repo.WebHooksNew)
m.Post("/hooks/gogs/new", bindIgnErr(auth.NewWebhookForm{}), repo.WebHooksNewPost)
m.Post("/hooks/slack/new", bindIgnErr(auth.NewSlackHookForm{}), repo.SlackHooksNewPost)
m.Get("/hooks/:id", repo.WebHooksEdit)
m.Post("/hooks/gogs/:id", bindIgnErr(auth.NewWebhookForm{}), repo.WebHooksEditPost)
m.Post("/hooks/slack/:id", bindIgnErr(auth.NewSlackHookForm{}), repo.SlackHooksEditPost)
m.Group("/hooks/git", func() {
m.Get("", repo.GitHooks)
m.Get("/:name", repo.GitHooksEdit)
m.Post("/:name", repo.GitHooksEditPost)
2014-10-06 23:50:00 +02:00
}, middleware.GitHookService())
})
}, reqSignIn, middleware.RepoAssignment(true), reqTrueOwner)
2014-10-25 00:43:17 +02:00
m.Group("/:username/:reponame", func() {
m.Get("/action/:action", repo.Action)
m.Group("/issues", func() {
m.Get("/new", repo.CreateIssue)
m.Post("/new", bindIgnErr(auth.CreateIssueForm{}), repo.CreateIssuePost)
m.Post("/:index", bindIgnErr(auth.CreateIssueForm{}), repo.UpdateIssue)
m.Post("/:index/label", repo.UpdateIssueLabel)
m.Post("/:index/milestone", repo.UpdateIssueMilestone)
m.Post("/:index/assignee", repo.UpdateAssignee)
m.Get("/:index/attachment/:id", repo.IssueGetAttachment)
m.Post("/labels/new", bindIgnErr(auth.CreateLabelForm{}), repo.NewLabel)
m.Post("/labels/edit", bindIgnErr(auth.CreateLabelForm{}), repo.UpdateLabel)
m.Post("/labels/delete", repo.DeleteLabel)
m.Get("/milestones", repo.Milestones)
m.Get("/milestones/new", repo.NewMilestone)
m.Post("/milestones/new", bindIgnErr(auth.CreateMilestoneForm{}), repo.NewMilestonePost)
m.Get("/milestones/:index/edit", repo.UpdateMilestone)
m.Post("/milestones/:index/edit", bindIgnErr(auth.CreateMilestoneForm{}), repo.UpdateMilestonePost)
m.Get("/milestones/:index/:action", repo.UpdateMilestone)
})
2014-10-25 00:43:17 +02:00
m.Post("/comment/:action", repo.Comment)
m.Get("/releases/new", repo.NewRelease)
m.Get("/releases/edit/:tagname", repo.EditRelease)
}, reqSignIn, middleware.RepoAssignment(true))
2014-10-25 00:43:17 +02:00
m.Group("/:username/:reponame", func() {
m.Post("/releases/new", bindIgnErr(auth.NewReleaseForm{}), repo.NewReleasePost)
m.Post("/releases/edit/:tagname", bindIgnErr(auth.EditReleaseForm{}), repo.EditReleasePost)
}, reqSignIn, middleware.RepoAssignment(true, true))
2014-10-25 00:43:17 +02:00
m.Group("/:username/:reponame", func() {
m.Get("/issues", repo.Issues)
m.Get("/issues/:index", repo.ViewIssue)
m.Get("/pulls", repo.Pulls)
m.Get("/branches", repo.Branches)
m.Get("/archive/*", repo.Download)
m.Get("/issues2/", repo.Issues2)
}, ignSignIn, middleware.RepoAssignment(true))
2014-07-26 06:24:27 +02:00
2014-10-25 00:43:17 +02:00
m.Group("/:username/:reponame", func() {
m.Get("/src/:branchname", repo.Home)
m.Get("/src/:branchname/*", repo.Home)
m.Get("/raw/:branchname/*", repo.SingleDownload)
m.Get("/commits/:branchname", repo.Commits)
m.Get("/commits/:branchname/search", repo.SearchCommits)
m.Get("/commits/:branchname/*", repo.FileHistory)
m.Get("/commit/:branchname", repo.Diff)
m.Get("/commit/:branchname/*", repo.Diff)
m.Get("/releases", repo.Releases)
m.Get("/compare/:before([a-z0-9]+)...:after([a-z0-9]+)", repo.CompareDiff)
2014-03-30 07:30:17 +02:00
}, ignSignIn, middleware.RepoAssignment(true, true))
2014-03-22 21:00:46 +01:00
2014-10-25 00:43:17 +02:00
m.Group("/:username", func() {
m.Get("/:reponame", ignSignIn, middleware.RepoAssignment(true, true, true), repo.Home)
m.Any("/:reponame/*", ignSignInAndCsrf, repo.Http)
2014-09-15 16:09:17 +02:00
})
2014-03-21 17:48:26 +01:00
2014-09-22 01:39:10 +02:00
// robots.txt
m.Get("/robots.txt", func(ctx *middleware.Context) {
if setting.HasRobotsTxt {
ctx.ServeFile(path.Join(setting.CustomPath, "robots.txt"))
} else {
ctx.Error(404)
}
})
2014-03-23 11:27:01 +01:00
// Not found handler.
2014-03-23 06:48:01 +01:00
m.NotFound(routers.NotFound)
2014-05-26 02:11:25 +02:00
var err error
listenAddr := fmt.Sprintf("%s:%s", setting.HttpAddr, setting.HttpPort)
2014-09-20 02:11:34 +02:00
log.Info("Listen: %v://%s%s", setting.Protocol, listenAddr, setting.AppSubUrl)
2014-05-26 02:11:25 +02:00
switch setting.Protocol {
case setting.HTTP:
err = http.ListenAndServe(listenAddr, m)
case setting.HTTPS:
err = http.ListenAndServeTLS(listenAddr, setting.CertFile, setting.KeyFile, m)
default:
2014-07-26 06:24:27 +02:00
log.Fatal(4, "Invalid protocol: %s", setting.Protocol)
2014-05-26 02:11:25 +02:00
}
if err != nil {
2014-07-26 06:24:27 +02:00
log.Fatal(4, "Fail to start server: %v", err)
2014-03-18 14:58:58 +01:00
}
2014-02-19 10:50:53 +01:00
}