From f06950e46262e4899f42ba3b197525bb2b88b9cb Mon Sep 17 00:00:00 2001 From: Nathan Kinder Date: Tue, 10 Mar 2015 20:12:03 -0700 Subject: Add mod_wsgi display name for Ipsilon WSGI process This adds the mod_wsgi display-name setting to allow the Ipsilon WSGI process to show up with a useful process name instead of 'httpd'. This allows one to easily distinguish the WSGI process from other httpd processes. https://fedorahosted.org/ipsilon/ticket/62 Signed-off-by: Nathan Kinder Reviewed-by: Rob Crittenden --- templates/install/idp.conf | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/templates/install/idp.conf b/templates/install/idp.conf index 9cf2595..91d6d13 100644 --- a/templates/install/idp.conf +++ b/templates/install/idp.conf @@ -1,7 +1,7 @@ Alias /${instance}/ui ${staticdir}/ui Alias /.well-known %{wellknowndir} WSGIScriptAlias /${instance} ${ipsilondir}/ipsilon -WSGIDaemonProcess ${instance} user=${sysuser} group=${sysuser} home=${datadir} +WSGIDaemonProcess ${instance} user=${sysuser} group=${sysuser} home=${datadir} display-name=ipsilon-${instance} ${wsgi_socket} -- cgit