davide-romanini
davide-romanini
Added some code to ignore dot files and dirs. I made it by default, so if someone actually used hidden directories to store comics this update will remove them from...
It's a bit daunting having real work (well, at least a bit..) on a fork and having the issue tracker on the (dead) original repo. :-D Maybe we should reboot...
It seems you have not installed the required libraries. Did you tried `pip install -r requirements.txt`? I didn't tested it on windows, so there's a chance you'll need some more...
Project is not really dead, but proceeds very slowly. :-) I wonder if a webroot option is really necessary, maybe you can use rewrite rules for the same purpose??
ProxyPass and rewrites are a lot hackish, but very useful. I'm not sure I fully understood the wanted beahviour, but at https://httpd.apache.org/docs/2.2/rewrite/proxy.html there are some informations, at least for apache....
From referenced commit 489cd1e I've added a webroot option, for example: ``` $ comicstreamer --webroot /comics ``` will expose all urls at http://localhost:32500/comics/. It's a quick and dirty fix, let...
I made a quick test with a python reverse proxy (https://github.com/metajack/tape) ``` python tape -P /comics=http://localhost:32500/comics -P /static=http://localhost:32500/static ``` and it works. Pay attention to _slashes (/)_, I tried three...
I made only a quick test with tape as noted above. All pages and api calls worked for me. Note that also the /static path need to be reversed for...
Ok, it definitely requires more testing :-) I confirm that authentication wasn't tested at all so it could be a problem. Could you provide more details of your setup and...
I got a chance to do some more testing: - started up a VM with ubuntu mate - installed stock apache2 and enabled mod_proxy - added the following config to...