view mod_proctitle/mod_proctitle.lua @ 3918:dea6bea2ddd3

mod_http_oauth2: Refactor re-joining of JID out of token constructor Preparing for resource-bound tokens and handling of Components
author Kim Alvefur <zash@zash.se>
date Thu, 27 Feb 2020 22:58:56 +0100
parents 94c4d4899a21
children
line wrap: on
line source

-- Changes the process name to 'prosody' rather than 'lua'/'lua5.1'
-- Copyright (C) 2015 Rob Hoelz
--
-- This file is MIT/X11 licensed.

-- To use this module, you'll need the proctitle Lua library:
-- https://github.com/hoelzro/lua-proctitle
local proctitle = require 'proctitle';

proctitle 'prosody';