1
0
mirror of https://github.com/schollz/cowyo.git synced 2023-08-10 21:13:00 +03:00

Updated default port

Former-commit-id: 241329737c2ce000c3b437b8fb0a8bdec05d44d2 [formerly 1870ef7fc0a88a96c1021eeacfe0468385985389] [formerly d55c2c5103c310fd7a24fb158b76c1a8ed8e7604 [formerly 7264d9fdf7]]
Former-commit-id: f942563e3ca1774cd7d72c1228c301050d936750 [formerly 68a9011a9d0a2046a2c9b47440006bd9ea2bce62]
Former-commit-id: 864daedf2912a98febde18a23a0250f3d6a930be
This commit is contained in:
Zack Scholl 2016-02-10 15:07:26 -05:00
parent aa19ef960e
commit 2109877de4
2 changed files with 6 additions and 6 deletions

View File

@ -61,9 +61,9 @@ awwkoala: A Websocket Wiki and Kind Of A List Application
run this to start the server and then visit localhost at the port you specify run this to start the server and then visit localhost at the port you specify
(see parameters). (see parameters).
Example: 'awwkoala localhost' Example: 'awwkoala localhost'
Example: 'awwkoala -p :8080 localhost' Example: 'awwkoala -p :8080 localhost:8080'
Example: 'awwkoala -db /var/lib/awwkoala/db.bolt localhost' Example: 'awwkoala -db /var/lib/awwkoala/db.bolt localhost:8003'
Example: 'awwkoala -p :8080 -crt ssl/server.crt -key ssl/server.key localhost' Example: 'awwkoala -p :8080 -crt ssl/server.crt -key ssl/server.key localhost:8080'
Options: Options:
-a string -a string
key to access admin priveleges (default no admin priveleges) key to access admin priveleges (default no admin priveleges)
@ -76,7 +76,7 @@ Options:
-key string -key string
location of ssl key location of ssl key
-p string -p string
port to bind (default ":12312") port to bind (default ":8003")
``` ```
If you set the admin flag, `-a` you can access a list of all the current files by going to `/ls/WhateverYouSetTheFlagTo`. If you set the admin flag, `-a` you can access a list of all the current files by going to `/ls/WhateverYouSetTheFlagTo`.

View File

@ -35,7 +35,7 @@ func main() {
VersionNum = "1.01" VersionNum = "1.01"
_, executableFile, _, _ := runtime.Caller(0) // get full path of this file _, executableFile, _, _ := runtime.Caller(0) // get full path of this file
databaseFile := path.Join(path.Dir(executableFile), "data.db") databaseFile := path.Join(path.Dir(executableFile), "data.db")
flag.StringVar(&RuntimeArgs.Port, "p", ":12312", "port to bind") flag.StringVar(&RuntimeArgs.Port, "p", ":8003", "port to bind")
flag.StringVar(&RuntimeArgs.DatabaseLocation, "db", databaseFile, "location of database file") flag.StringVar(&RuntimeArgs.DatabaseLocation, "db", databaseFile, "location of database file")
flag.StringVar(&RuntimeArgs.AdminKey, "a", "", "key to access admin priveleges") flag.StringVar(&RuntimeArgs.AdminKey, "a", "", "key to access admin priveleges")
flag.StringVar(&RuntimeArgs.ServerCRT, "crt", "", "location of ssl crt") flag.StringVar(&RuntimeArgs.ServerCRT, "crt", "", "location of ssl crt")
@ -46,7 +46,7 @@ run this to start the server and then visit localhost at the port you specify
(see parameters). (see parameters).
Example: 'awwkoala localhost' Example: 'awwkoala localhost'
Example: 'awwkoala -p :8080 localhost:8080' Example: 'awwkoala -p :8080 localhost:8080'
Example: 'awwkoala -db /var/lib/awwkoala/db.bolt localhost:12312' Example: 'awwkoala -db /var/lib/awwkoala/db.bolt localhost:8003'
Example: 'awwkoala -p :8080 -crt ssl/server.crt -key ssl/server.key localhost:8080' Example: 'awwkoala -p :8080 -crt ssl/server.crt -key ssl/server.key localhost:8080'
Options:`) Options:`)
flag.CommandLine.PrintDefaults() flag.CommandLine.PrintDefaults()