Pylons / waitress

Waitress - A WSGI server for Python 3
https://docs.pylonsproject.org/projects/waitress/en/latest/
Other
1.45k stars 176 forks source link

How to daemonize waitress-serve? #295

Closed zhaoxin closed 4 years ago

zhaoxin commented 4 years ago

How to run waitress-serve as daemon like gunicorn --daemon? I can't find any description in document.

digitalresistor commented 4 years ago

This is not supported directly by waitress. We recommend you use a process manager such as supervisord/systemd/Windows services.

zhaoxin commented 4 years ago

This is not supported directly by waitress. We recommend you use a process manager such as supervisord/systemd/Windows services.

Thanks.