浏览代码

use AppSubUrl as prefix for routes in FCGI mode

tags/v0.9.99
Kyle P Davis 9 年前
父节点
当前提交
47f37e55e9
共有 1 个文件被更改,包括 3 次插入0 次删除
  1. 3
    0
      cmd/web.go

+ 3
- 0
cmd/web.go 查看文件

@@ -85,6 +85,9 @@ func newMacaron() *macaron.Macaron {
if setting.EnableGzip {
m.Use(macaron.Gziper())
}
if setting.Protocol == setting.FCGI {
m.SetURLPrefix(setting.AppSubUrl)
}
m.Use(macaron.Static(
path.Join(setting.StaticRootPath, "public"),
macaron.StaticOptions{

正在加载...
取消
保存