Compare commits
2 Commits
2937b93dff
...
2aee702fc6
Author | SHA1 | Date |
---|---|---|
genofire | 2aee702fc6 | |
genofire | 843a985be7 |
|
@ -28,7 +28,13 @@ func (config *Database) setupMigrator(testdata bool) (*gormigrate.Gormigrate, er
|
|||
return nil, ErrNothingToMigrate
|
||||
}
|
||||
|
||||
return gormigrate.New(config.DB, gormigrate.DefaultOptions, migrations), nil
|
||||
return gormigrate.New(config.DB, &gormigrate.Options{
|
||||
TableName: "migrations",
|
||||
IDColumnName: "id",
|
||||
IDColumnSize: 255,
|
||||
UseTransaction: true,
|
||||
ValidateUnknownMigrations: false,
|
||||
}, migrations), nil
|
||||
|
||||
}
|
||||
|
||||
|
|
12
web/main.go
12
web/main.go
|
@ -27,12 +27,12 @@ import (
|
|||
// A Service stores configuration of a server.
|
||||
type Service struct {
|
||||
// config
|
||||
Listen string `toml:"listen"`
|
||||
AccessLog bool `toml:"access_log"`
|
||||
WebrootIndexDisable bool `toml:"webroot_index_disable"`
|
||||
Webroot string `toml:"webroot"`
|
||||
WebrootFS http.FileSystem `toml:"-"`
|
||||
ACME struct {
|
||||
Listen string `toml:"listen"`
|
||||
AccessLog bool `toml:"access_log"`
|
||||
WebrootIndexDisable bool `toml:"webroot_index_disable"`
|
||||
Webroot string `toml:"webroot"`
|
||||
WebrootFS http.FileSystem `toml:"-"`
|
||||
ACME struct {
|
||||
Enable bool `toml:"enable"`
|
||||
Domains []string `toml:"domains"`
|
||||
Cache string `toml:"cache"`
|
||||
|
|
|
@ -22,7 +22,7 @@ func (ws *Service) Bind(r *gin.Engine) {
|
|||
|
||||
ws.log.Info("bind modules", zap.Int("count", len(ws.modules)))
|
||||
if ws.Webroot != "" {
|
||||
ws.WebrootFS = static.LocalFile(ws.Webroot, false)
|
||||
ws.WebrootFS = static.LocalFile(ws.Webroot, false)
|
||||
}
|
||||
r.Use(func(c *gin.Context) {
|
||||
if !ws.WebrootIndexDisable {
|
||||
|
|
Loading…
Reference in New Issue