Re: [users@httpd] protect apache to stop work if logdir is missing

2019-09-09 Thread @lbutlr
On Sep 9, 2019, at 11:21 AM, Anton Gorlov wrote: > I need to provide users with the ability to archive logs on their own Yes? And? You’ve been told two ways to do this that do not require modifying the source code. - To unsub

[users@httpd] Modifying Headers Programmatically

2019-09-09 Thread Muggeridge, Matt
I have an app that runs on frontend- and backend-servers. Customers login to the frontend-server and the same credentials are used for various apps available on the backend-servers. From within their session on the frontend-server, they select an app on the backend server, whereupon they auto

Re: [users@httpd] protect apache to stop work if logdir is missing

2019-09-09 Thread Anton Gorlov
09.09.2019 19:22, D'Arcy Cain пишет: On 9/9/19 12:13 PM, Anton Gorlov wrote: 09.09.2019 19:07, @lbutlr пишет: On 9 Sep 2019, at 09:57, Anton Gorlov wrote: I need the web server to continue working if the user has deleted the log directory. I would solve this by preventing the user from dele

Re: [users@httpd] protect apache to stop work if logdir is missing

2019-09-09 Thread @lbutlr
On 9 Sep 2019, at 10:13, Anton Gorlov wrote: > 09.09.2019 19:07, @lbutlr пишет: >> On 9 Sep 2019, at 09:57, Anton Gorlov >> wrote: >> >>> I need the web server to continue working if the user has deleted the log >>> directory. >>> >> I would solve this by preventing the user from deleting the

Re: [users@httpd] protect apache to stop work if logdir is missing

2019-09-09 Thread D'Arcy Cain
On 9/9/19 12:13 PM, Anton Gorlov wrote: > 09.09.2019 19:07, @lbutlr пишет: >> On 9 Sep 2019, at 09:57, Anton Gorlov wrote: >>> I need the web server to continue working if the user has deleted the log >>> directory. >> I would solve this by preventing the user from deleting the directory or >> r

Re: [users@httpd] protect apache to stop work if logdir is missing

2019-09-09 Thread Anton Gorlov
09.09.2019 19:07, @lbutlr пишет: > On 9 Sep 2019, at 09:57, Anton Gorlov wrote: >> I need the web server to continue working if the user has deleted the log >> directory. > I would solve this by preventing the user from deleting the directory or > recreating it on deletion, not by patching the s

Re: [users@httpd] protect apache to stop work if logdir is missing

2019-09-09 Thread @lbutlr
On 9 Sep 2019, at 09:57, Anton Gorlov wrote: > I need the web server to continue working if the user has deleted the log > directory. I would solve this by preventing the user from deleting the directory or recreating it on deletion, not by patching the source code. -- 'There's a kind of mag

[users@httpd] protect apache to stop work if logdir is missing

2019-09-09 Thread Anton Gorlov
Hi! I need the web server to continue working if the user has deleted the log directory. I wrote a small patch. Are there any obvious errors in it that disrupt the operation of the web server or lead to a memory / pointer leak? Index: apache2-2.4.10/modules/loggers/mod_log_config.c ===