zblsv

Results 10 comments of zblsv

No, -flto flag couses this error. Try to upgrade to 12.x FreeBSD. Or do the following hack trip. ``` gem fetch sassc -v 2.2.1 gem unpack sassc-2.2.1.gem gem spec sassc-2.2.1.gem...

The problem is explained here: https://www.mikeperham.com/2010/02/24/the-trouble-with-ruby-finalizers/

As I can see in the code (`lib/iodine.rb:205`), the master and all the workers are trying to delete the pidfile. `File.delete` raises exception on file absence. This can be fixed...

> copy / move the other folders into the public folder Or make a symbolic link to it.

> It depends on the type of the link (hard vs. soft). Hard links cannot be to directories on Linux, as far as I know. > Much better to copy...

> If I want to MOUNT these directories ...Then you link public/great/path/ to ~/blah/ But it is not possible, if only the open system call used on current implementation of...

Bruno, It needs a more concrete example. It is difficult to understand what exactly is required. If you stuck on the using the -www option and nothing else, then run...

> unless you want to push a PR I think of adding multiple -route options with two values: "mounted" route and path to the root directory with static files.

> it does not handle websocket You can put nginx as reverse proxy to Iodine. nginx will be serving static files and Iodine will be serving websockets.

> adding a router to iodine might work? It might work, for instance, if we want have a route of "GET /main.js" leading to ./public/javascripts/site.js And we are lazy to...