05-28-2020, 01:52 PM
(This post was last modified: 05-28-2020, 01:53 PM by remkonoteboom.)
If TACTIC (or rather the underlying CherryPy module) exits immediately, that means it cannot bind to that port. CherryPy is pretty sensitive to the domain name that is passed through. It may be the "http://" part after -s
Try:
python3 startup_dev.py -p 80 -s <DOMAIN_NAME>
withouth the "http://" on the domain name.
Try:
python3 startup_dev.py -p 80 -s <DOMAIN_NAME>
withouth the "http://" on the domain name.