Updated some docs references to the web interface port

This commit is contained in:
simonmicro 2022-12-11 22:04:50 +01:00
parent 460a714f2d
commit 16eb5a010b
No known key found for this signature in database
GPG key ID: 033A4D4CE4E063D6
2 changed files with 3 additions and 3 deletions

View file

@ -22,7 +22,7 @@ latest version you should check something like [watchtower](https://github.com/c
There are currently three tags of the image available (select one just by appending `:<tag>` to the image from above): There are currently three tags of the image available (select one just by appending `:<tag>` to the image from above):
* `latest`, currently the same like `minimal`. * `latest`, currently the same like `minimal`.
* `minimal`, which is based on the python3 minimal configuration of py-kms. _This tag does NOT include `sqlite` support !_ * `minimal`, which is based on the python3 minimal configuration of py-kms. _This tag does NOT include `sqlite` support !_
* `python3`, which is fully configurable and equipped with `sqlite` support and a web interface (make sure to expose port 8080) for management. * `python3`, which is fully configurable and equipped with `sqlite` support and a web interface (make sure to expose port `8080`) for management.
#### Architectures #### Architectures
There are currently the following architectures available (if you need an other, feel free to open an issue): There are currently the following architectures available (if you need an other, feel free to open an issue):

View file

@ -82,11 +82,11 @@ Mon, 12 Jun 2017 22:09:00 INFO HWID: 364F463A8863D35F
> Creates a _LOGFILE.log_ logging file. The default is named _pykms_logserver.log_. > Creates a _LOGFILE.log_ logging file. The default is named _pykms_logserver.log_.
example: example:
``` ```
user@host ~/path/to/folder/py-kms $ python3 pykms_Server.py 192.168.1.102 8080 -F ~/path/to/folder/py-kms/newlogfile.log -V INFO -w RANDOM user@host ~/path/to/folder/py-kms $ python3 pykms_Server.py 192.168.1.102 1688 -F ~/path/to/folder/py-kms/newlogfile.log -V INFO -w RANDOM
``` ```
creates _newlogfile.log_ with these initial messages: creates _newlogfile.log_ with these initial messages:
``` ```
Mon, 12 Jun 2017 22:09:00 INFO TCP server listening at 192.168.1.102 on port 8080. Mon, 12 Jun 2017 22:09:00 INFO TCP server listening at 192.168.1.102 on port 1688.
Mon, 12 Jun 2017 22:09:00 INFO HWID: 58C4F4E53AE14224 Mon, 12 Jun 2017 22:09:00 INFO HWID: 58C4F4E53AE14224
``` ```