Show all posts by user
Discussions in Russian
You first need to investigate the logfiles before looking for a solution, is the stream still connected to obs when the client disconnects? what if you use 2 workers is one of them busy and with a reconnect switches over to the other worker? if thats the case does this free the other busy worker? etc,etc,etc...
Because there are thousands of solutions you need to narrow them down by investigating
by
itpp2012
-
Other discussion
Drop this into google "rtmp stream player keeps buffering"
by
itpp2012
-
Other discussion
andersonsserra Wrote:
-------------------------------------------------------
> nginx: "stream" directive is not allowed here in /etc/nginx/email/balanceador.conf:1
by
itpp2012
-
Nginx Mailing List - English
Sam Henaghan Wrote:
-------------------------------------------------------
> Please stop emailing me and delete anything or any information you
> have about me or even accounts please this wasn’t me whatever has been
> made so please delete
You have joined a public mailing list with the email address you are receiving these posts on, weather you or someone else done this you ne
by
itpp2012
-
Nginx Mailing List - English
https://blog.devcloud.hosting/configuring-nginx-for-quickly-switching-to-maintenance-mode-e4136cf497f3
https://forum.openresty.us/d/4770-c84503afcecd42ad08f3ec457c0948b7
by
itpp2012
-
Nginx Mailing List - English
Use 'map' to identify each subnet and this to limit:
https://docs.nginx.com/nginx/admin-guide/security-controls/controlling-access-proxied-http/#limit_conn
by
itpp2012
-
How to...
See the bottom (comments) of that article, your php block looks like it is not a part of the main location block.
by
itpp2012
-
How to...
https://www.digitalocean.com/community/tutorials/how-to-set-up-password-authentication-with-nginx-on-ubuntu-14-04
by
itpp2012
-
How to...
Thomas Stephen Lee Wrote:
-------------------------------------------------------
> Hi,
>
> does
>
> OpenSSL 1.1.1f.
>
> fix the issue ?
Yes.
by
itpp2012
-
Nginx Mailing List - English
Not all components are modules, using a viewer in hex-mode you could view the binary and search for the options.
Or just try to use it and run -T to see if this feature is giving an error or not.
by
itpp2012
-
How to...
It's added by default, see also http://nginx.org/en/docs/configure.html
by
itpp2012
-
How to...
It doesn't and there are a few more for which this doesn't work either, it needs a lot more work and testing.
I had a new concept patch but today decided to roll back to 1.1.1d and back port 1.1.1e (de) patches only.
Only NGX_ERROR mitigates a truncation attack, not NGX_DONE (which is open for debate).
by
itpp2012
-
Nginx Mailing List - English
How about this as this catches all 3 while conditions:
+++ src/event/ngx_event_openssl.c
@@ -2318,
c->ssl->no_wait_shutdown = 1;
c->ssl->no_send_shutdown = 1;
if (sslerr == SSL_ERROR_ZERO_RETURN || ERR_peek_error() == 0) {
ngx_log_debug0(NGX_LOG_DEBUG_EVENT, c->log, 0,
"peer shutdown SSL cleanly");
return NGX
by
itpp2012
-
Nginx Mailing List - English
Others not as often as the primary but all related to 1.1.1e:
All :
SSL_read() failed (SSL: error:14095126:SSL routines:ssl3_read_n:unexpected eof while reading) while processing HTTP/2 connection
SSL_read() failed (SSL: error:14095126:SSL routines:ssl3_read_n:unexpected eof while reading) while keepalive
SSL_read() failed (SSL: error:14095126:SSL routines:ssl3_read_n:unexpected eof while re
by
itpp2012
-
Nginx Mailing List - English
Maxim Dounin Wrote:
-------------------------------------------------------
> On Fri, Mar 20, 2020 at 10:41:32AM +0300, Sergey Kandaurov wrote:
> > > On 18 Mar 2020, at 14:17, itpp2012 <nginx-forum@forum.nginx.org> wrote:
> > > Question: does this need to resolved in openssl or nginx ?
> > So, they deliberately changed existing behaviour, known since
> &
by
itpp2012
-
Nginx Mailing List - English
After using 1.1.1e, see also the commit where an explicit entry has been added.
nginx just reports back what openssl passes, if this was unexpected (none critical) nginx needs to be patched, if not this openssl workaround (10880) needs to be changed.
by
itpp2012
-
Nginx Mailing List - English
Logging getting swamped with:
1808#2740: *20747 SSL_read() failed (SSL: error:14095126:SSL routines:ssl3_read_n:unexpected eof while reading) while keepalive
Related to: https://github.com/openssl/openssl/issues/10880
and this commit: https://github.com/openssl/openssl/commit/db943f43a60d1b5b1277e4b5317e8f288e7a0a3a
Question: does this need to be resolved in openssl or nginx ?
22-3-2
by
itpp2012
-
Nginx Mailing List - English
nginx is NOT connecting to anything, its incoming traffic, someone using AWS is attempting a Minerva (and others) attack on your instance.
If your running the latest version there is nothing to worry about.
by
itpp2012
-
Other discussion
Yes while its running, locking has no bearing as a FD uses a link not a name while its open.
FOR %%G IN (*.log) DO ren "%%G" "%datename%_%%G"
nginx -s reopen
sleep 5
move /y %datename%_*.* data
by
itpp2012
-
How to...
I do it all the time, rename, reopen and move renamed files, works for all log files.
Look at access rights who does the rename.
by
itpp2012
-
How to...
Try it and see, run it once a day and see how big/small the logs are.
by
itpp2012
-
How to...
Rename the logfile and signal nginx to reopen logs (nginx -s reopen) I think, check the options.
by
itpp2012
-
How to...
Its a flat file which gets appended, there is no size regulation.
by
itpp2012
-
How to...
If you are referring to ' open_log_file_cache',
open_log_file_cache max=1000 inactive=20s valid=1m min_uses=2;
Others,
open_file_cache max=1000 inactive=20s;
open_file_cache_errors on;
open_file_cache_min_uses 3;
open_file_cache_valid 20s;
by
itpp2012
-
How to...
Look in the /log folder.
by
itpp2012
-
How to...
Do you see them rotating in the nginx log ? (backend)
"when multiple users are trying to access the webapp at the same time they have to wait until the bokeh server process their request. "
With more than one backend it should work with more than one user but if the backend takes 'a long' time to respond you need to make the backend faster. Or implement a javascript which blocks subm
by
itpp2012
-
Other discussion