The port on which the flask app is listening should be configurable in the camera-control.yml .
See
|
# ToDo get host and port from config, default 127.0.0.1:8000 |
|
app.config['cameras'] = cameras |
|
app.config['BASIC_AUTH_USERNAME'] = auth[0] |
|
app.config['BASIC_AUTH_PASSWORD'] = auth[1] |
|
app.run(host='127.0.0.1', port=8080) |
The port on which the flask app is listening should be configurable in the
camera-control.yml.See
opencast-camera-control/occameracontrol/camera_control_server.py
Lines 103 to 107 in 34f4f96