1
0
mirror of https://github.com/Jermolene/TiddlyWiki5 synced 2024-06-16 10:29:54 +00:00

Update WebServer "port" variable docs (#3651)

The colon (:) separator needs to be replaced with an equals sign (=). This kept throwing me off while I was trying to set this up.
This commit is contained in:
Dr. Donald Lund 2018-12-17 14:36:31 -05:00 committed by Jeremy Ruston
parent 172751605e
commit 3827feee3f

View File

@ -15,11 +15,11 @@ The ''port'' parameter accepts two types of value:
This example configures the server to listen on port 8090:
```
tiddlywiki mywikifolder --listen port:8090
tiddlywiki mywikifolder --listen port=8090
```
This example configures the server to listen on the port specified in the environment variable `THE_PORT`:
```
tiddlywiki mywikifolder --listen port:THE_PORT
tiddlywiki mywikifolder --listen port=THE_PORT
```