aboutsummaryrefslogtreecommitdiffstats
path: root/community/py-waitress/waitress.confd
diff options
context:
space:
mode:
authorJakub Jirutka <jakub@jirutka.cz>2018-07-30 12:13:37 +0200
committerJakub Jirutka <jakub@jirutka.cz>2018-07-30 12:45:26 +0200
commit0ea89467e6286a91641e86f26579371ecfda4686 (patch)
tree3eb0d8f5f16572a4ac01696171e634693ad16e9f /community/py-waitress/waitress.confd
parentdb7e34bf4a0ad7f5f04bcdf6b8b0701ec1163c7d (diff)
downloadaports-0ea89467e6286a91641e86f26579371ecfda4686.tar.bz2
aports-0ea89467e6286a91641e86f26579371ecfda4686.tar.xz
community/py-waitress: fix init to never change owner of e.g. /run
for example when unix_socket_path=/run/app.sock.
Diffstat (limited to 'community/py-waitress/waitress.confd')
-rw-r--r--community/py-waitress/waitress.confd6
1 files changed, 4 insertions, 2 deletions
diff --git a/community/py-waitress/waitress.confd b/community/py-waitress/waitress.confd
index 7d0f62609d..80e39da880 100644
--- a/community/py-waitress/waitress.confd
+++ b/community/py-waitress/waitress.confd
@@ -29,8 +29,10 @@ wsgi_module="wsgi"
# Example: listen="127.0.0.1:8080 [::1]:8080 *:8181"
listen_on="*:8080"
-# Path of Unix socket. If a socket path is specified, a Unix domain socket is
-# made instead of the usual inet domain socket.
+# Path of unix socket to create and listen on. The directory of the socket path
+# will be created if not exists and changed owner to the $user. It must not be
+# existing directory owned by root, such as /run. Use e.g. /run/app/server.sock.
+# If specified, $listen_on is effectively ignored.
#unix_socket_path=
# Octal permissions to use for the Unix domain socket. Default is 600.