diff options
author | Daniel Friesel <derf@finalrewind.org> | 2022-11-04 18:52:34 +0100 |
---|---|---|
committer | Daniel Friesel <derf@finalrewind.org> | 2022-11-04 18:52:34 +0100 |
commit | 61d2de43d9cfb86186dfa41165b10ea99b7c2d81 (patch) | |
tree | 4aef2975ef341bfa0cd05f120daf0e6cb4fbc298 | |
parent | 2a55a8f7c6b5a8d3b8619b5014389d9ad2c99937 (diff) |
README: Explicitly mention that morbo/daemon do not respect LISTEN variable
-rw-r--r-- | README.md | 15 |
1 files changed, 10 insertions, 5 deletions
@@ -90,7 +90,7 @@ re-start the container. Setup --- -db-infoscreen respects the following environment variables: +In hypnotoad mode (recommended), db-infoscreen respects the following environment variables: | Variable | Default | Description | | :------- | :------ | :---------- | @@ -106,10 +106,15 @@ Set these as needed, create `templates/imprint.html.ep` (imprint) and pass requests for db-infoscreen to the appropriate port. See the `examples` directory for imprint and privacy policy samples. -You can run the app using a Mojo::Server of your choice, e.g. **perl -index.pl daemon -m production** (quick&dirty, does not respect all variables) -or **hypnotoad** (recommended). A systemd unit example is provided in -`examples/db-infoscreen.service`. +You can then use a service supervisor of your choice to run **hypnotoad index.pl** +(using Mojolicious' hypnotoad server). See `examples/db-infoscreen.service` +for a systemd unit example. + +For a quick&dirty setup on low-traffic sites you can also use **morbo index.pl** +or **perl index.pl daemon -m production**. In this case, DBFAKEDISPLAY\_LISTEN +and DBFAKEDISPLAY\_WORKERS have no effect. Morbo accepts IP and port +configuration using the `-l`/`--listen` switch (default: `http://*:3000`); +Daemon mode respects the MOJO\_LISTEN environment variable (default: `http://*:3000`). For public-facing installations, you may want to enable caching in the reverse proxy serving DBF. See `examples/nginx-cache.conf` and |