I've installed Wooey onto a Centos 7 system and have been successful getting a script into it and getting it to run successfully...through the localhost interface. However I can't seem to get wooey configured to serve its interface externally. I've opened 8000 in the firewall. But externally, the server isn't responding. I didn't find any conf for it in /etc and did modify user_settings.py to allow 0.0.0.0
I've installed Wooey onto a Centos 7 system and have been successful getting a script into it and getting it to run successfully...through the localhost interface. However I can't seem to get wooey configured to serve its interface externally. I've opened 8000 in the firewall. But externally, the server isn't responding. I didn't find any conf for it in /etc and did modify user_settings.py to allow 0.0.0.0
ALLOWED_HOSTS = ( 'localhost', '127.0.0.1', '0.0.0.0',
"wooey.herokuapp.com",# put your site here
)
Localhost still serves, but I can't get it to serve remotely. I have added honcho to assist starting it up.
Any thoughts on this issue?
Thanks in advance, -Kirk