Re: All I want for easter is a working module

2020-04-11 Thread Mathew Heard
Gee, glad I don't need to ask for help often. Usually providing a minimal working example to replicate a problem and a concise description of the problem is a good thing. I'm a member of quite a few communities that I provide support for and this would have been an easy case of "your usage of that

Using perf command for nginx process

2020-04-11 Thread Mahmood Naderan
Hi, I wonder if anybody here have tried perf command with nginx service. While the service is up, I ran a wrk command from another computer as below ./wrk -t1 -c100 -d200s http://10.1.1.130 On the server, the nginx process is 100% and then I attached perf command like $ sudo perf record -e i

Re: All I want for easter is a working module

2020-04-11 Thread Bee.Lists
I think he’s saying that there’s more to this than posting code and saying “no worky”. State what you want, what you have, what you’ve tried, and what you think might be going wrong. Simply posting your code and expecting other troubleshooters to solve your issue, is the wrong approach. H

nginx and atlassian crowd

2020-04-11 Thread Alex Samad
Hi Whats considered the best way to auth again crowd. I see some old module - 6-7 year untouched https://github.com/kare/ngx_http_auth_crowd_module trying this one but can't compile it also noted crowd does openid https://www.nginx.com/blog/authenticating-users-existing-applications-openid-c

Re: All I want for easter is a working module

2020-04-11 Thread Mathew Heard
J.R, You won't find it publicly as all it is a testing module with the goal of establishing a working timer. If you want the source code for it you need only ask. Here you go. /* * Copyright (C) Mathew Heard. */ #include #include #include #include #define NGX_HTTP_SLOW_INTERVAL 7000 typed

Global basic auth for multiple servers

2020-04-11 Thread Stefan Christ
Hello, today I tried to install and setup nginx and it worked great so far. I was able to add some servers (server sections) for each of my subdomains and forward them to the specific web interface in my network (reverse proxy). I wanted to add some extra security so I used basic auth in the ht

Re: All I want for easter is a working module

2020-04-11 Thread J.R.
I've never heard of 'ngx_http_slow_module'... Is there a github page or similar with the source code? It's going to take more than just selective snippets if you really want someone to help debug it... ___ nginx mailing list nginx@nginx.org http://mailma

All I want for easter is a working module

2020-04-11 Thread Mathew Heard
Could anyone help me out with the problem here? ngx_module_t ngx_http_slow_module = { NGX_MODULE_V1, &ngx_http_slow_module_ctx, /* module context */ ngx_http_slow_commands, /* module directives */ NGX_HTTP_MODULE, /* module type */ NULL, /* init master */ NULL, /* init module */ ngx_http_slow_init