common-serve-options.rst (654B)
1 SERVE 2 Should the HTTP server listen on a UNIX domain socket (set option to ``unix``), or on a TCP socket (set option to ``tcp``), or be activated via systemd (set option to ``systemd``). 3 4 PORT 5 Port on which the HTTP server listens, e.g. 9967. 6 Only used if ``SERVE`` is ``tcp``. 7 8 BIND_TO 9 Which IP address should we bind to? E.g. ``127.0.0.1`` or ``::1``for loopback. Can also be given as a hostname. 10 Only used if ``SERVE`` is ``tcp``. 11 12 UNIXPATH 13 Which unix domain path should we bind to? 14 Only used if ``SERVE`` is ``unix``. 15 16 UNIXPATH_MODE 17 What should be the file access permissions for ``UNIXPATH``? 18 Only used if ``SERVE`` is ``unix``.