Change default port to 8080; closes #152

pull/160/head
Henrique Dias 2017-07-26 09:44:49 +01:00
parent 1bcfa022cf
commit 332efd6adc
No known key found for this signature in database
GPG Key ID: 936F5EB68D786730
1 changed files with 1 additions and 1 deletions

View File

@ -39,7 +39,7 @@ var (
func init() {
flag.StringVar(&config, "config", "", "JSON configuration file")
flag.StringVar(&port, "port", "80", "HTTP Port")
flag.StringVar(&port, "port", "8080", "HTTP Port")
flag.StringVar(&database, "database", "./filemanager.db", "Database path")
flag.StringVar(&scope, "scope", ".", "Default scope for new users")
flag.StringVar(&commands, "commands", "git svn hg", "Space separated commands available for new users")