Re: [Mojolicious] Problem with hypnotoad

2020-11-19 Thread Dan Book
Make sure your actions aren't going to hang up for excessive amounts of time, or the manager process will attempt to replace it (possibly causing your excessive forking). See https://metacpan.org/pod/Mojo::Server::Hypnotoad#heartbeat_timeout (defaults to 50 seconds) Make sure you are invoking hypn

Re: [Mojolicious] Problem with hypnotoad

2020-11-19 Thread Scott H
I don't know if this helps, I have this in my config file. hypnotoad => { listen => ['http://*:3000'], pid_file => 'hypnotoad.pid', workers => 10, spare => 5, proxy => 1 }, here is my systemd file to start it: [Unit] Description=MyMojoApp After=network.target User=scott Group=scott [Service] User

[Mojolicious] Problem with hypnotoad

2020-11-19 Thread Joseph Fridy
I have recently transitioned from solo development to beta testing for a Mojolicious::Lite application. Upon this transition, I switched from my casual use of morbo to hypnotoad. In order to not change my nginx configuration, I had hypnotoad listen on port 3000. The application appeared and I ma