PhotoBackup / server-bottle

The Python PhotoBackup server implementation
https://photobackup.github.io/
GNU General Public License v2.0
36 stars 7 forks source link

Fix to accept external connections #2

Closed dmpop closed 9 years ago

dmpop commented 9 years ago

To make the server work with my Android device, I had to change the following line:

run(reloader=True) line and change it to

to:

run(host="0.0.0.0", port=8080, reloader=True)

I'm not sure whether it's a feature or a bug, but I thought I'd let you know. :-) Keep up the great work!

stephanepechard commented 9 years ago

Yeah, I have to clear a bit these options, and probably set the port out in the configuration file. Thanks for yout input!

stephanepechard commented 9 years ago

Done in version 0.1.0