aboutsummaryrefslogtreecommitdiffstats
path: root/community/ldap-passwd-webui/ldap-passwd-webui.confd
diff options
context:
space:
mode:
authorJakub Jirutka <jakub@jirutka.cz>2017-10-02 21:18:19 +0200
committerJakub Jirutka <jakub@jirutka.cz>2017-10-02 21:18:19 +0200
commita52776b25f1ed6f9c8e506952681080af133a599 (patch)
tree4f9bc68f787802a2e1739d5a4b3078651d69081a /community/ldap-passwd-webui/ldap-passwd-webui.confd
parente8d72f3ef3542908701c91941b24ed9b113e6fd3 (diff)
downloadaports-a52776b25f1ed6f9c8e506952681080af133a599.tar.bz2
aports-a52776b25f1ed6f9c8e506952681080af133a599.tar.xz
community/ldap-passwd-webui: move from testing
Diffstat (limited to 'community/ldap-passwd-webui/ldap-passwd-webui.confd')
-rw-r--r--community/ldap-passwd-webui/ldap-passwd-webui.confd45
1 files changed, 45 insertions, 0 deletions
diff --git a/community/ldap-passwd-webui/ldap-passwd-webui.confd b/community/ldap-passwd-webui/ldap-passwd-webui.confd
new file mode 100644
index 0000000000..b4bc2e91f4
--- /dev/null
+++ b/community/ldap-passwd-webui/ldap-passwd-webui.confd
@@ -0,0 +1,45 @@
+# Configuration for /etc/init.d/ldap-passwd-webui
+
+# User to run the application.
+#user="nobody"
+
+# Path of the configuration file.
+_cfgfile="/etc/ldap-passwd-webui.ini"
+
+# Path of the log file to catch stdout/stderr of the process.
+logfile="/var/log/$RC_SVCNAME.log"
+
+# Tell waitress to listen on an ip port combination(s).
+# 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.
+#unix_socket_path=
+
+# Octal permissions to use for the Unix domain socket. Default is 600.
+#unix_socket_perms=
+
+# Default wsgi.url_scheme value. Default is "http".
+#url_scheme=
+
+# The SCRIPT_NAME WSGI environment value.
+# Setting this to anything except the empty string will cause the WSGI
+# SCRIPT_NAME value to be the value passed minus any trailing slashes you add,
+# and it will cause the PATH_INFO of any request which is prefixed with this
+# value to be stripped of the prefix. Default is the empty string.
+#url_prefix=
+
+# Server identity used in the "Server" header in responses.
+# Default is "waitress".
+#server_ident=
+
+# Extra options for waitress-serve.
+# See https://docs.pylonsproject.org/projects/waitress/en/latest/runner.html.
+waitress_opts="--max-request-body-size=16384"
+
+
+# The following variables should not be modified!
+basedir="/usr/share/webapps/ldap-passwd-webui"
+wsgi_module="app"
+start_stop_daemon_args="--env CONF_FILE=$_cfgfile"