summaryrefslogtreecommitdiff
path: root/app/config.go
diff options
context:
space:
mode:
Diffstat (limited to 'app/config.go')
-rw-r--r--app/config.go3
1 files changed, 2 insertions, 1 deletions
diff --git a/app/config.go b/app/config.go
index 4d72657..9c0e733 100644
--- a/app/config.go
+++ b/app/config.go
@@ -64,6 +64,7 @@ func DefaultConfig() *Config {
Server: &ServerConfig{
Host: "0.0.0.0",
Port: 8000,
+ StorePath: "tube.db",
UploadPath: "uploads",
MaxUploadSize: 104857600,
},
@@ -74,7 +75,7 @@ func DefaultConfig() *Config {
Timeout: 300,
},
Feed: &FeedConfig{
- ExternalURL: "http://localhost",
+ ExternalURL: "http://localhost:8000",
},
}
}