wooey / Wooey

A Django app that creates automatic web UIs for Python scripts.
http://wooey.readthedocs.org
BSD 3-Clause "New" or "Revised" License
2.13k stars 184 forks source link

I can't get Wooey to serve externally. #260

Closed yonaguska closed 6 years ago

yonaguska commented 6 years ago

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

tomanizer commented 6 years ago

Can you post how exactly you start the server and your full settings?