
waitress-serve
List of commands for waitress-serve:
-
waitress-serve:tldr:189e9 waitress-serve: Set the URL scheme to HTTPS.$ waitress-serve --url-scheme=${https} ${import-path:wsgi_func}try on your machineexplain this command
-
waitress-serve:tldr:764e5 waitress-serve: Call a factory method that returns a WSGI object.$ waitress-serve --call ${import-path-wsgi_factory}try on your machineexplain this command
-
waitress-serve:tldr:7cbca waitress-serve: Use 4 threads to process requests.$ waitress-serve --threads=${4} ${import-path:wsgifunc}try on your machineexplain this command
-
waitress-serve:tldr:c5394 waitress-serve: Run a Python web app.$ waitress-serve ${import-path:wsgi_func}try on your machineexplain this command
-
waitress-serve:tldr:dd79d waitress-serve: Listen on port 8080 on localhost.$ waitress-serve --listen=${localhost}:${8080} ${import-path:wsgi_func}try on your machineexplain this command
-
waitress-serve:tldr:faa19 waitress-serve: Start waitress on a Unix socket.$ waitress-serve --unix-socket=${path-to-socket} ${import-path:wsgi_func}try on your machineexplain this command