Strange error_page behavior

2020-08-06 Thread Fabiano Furtado Pessoa Coelho
Hi... I have the following setup in my NGINX 1.18.0 server: http { ... error_page 400 /my400.html; error_page 401 /my401.html; error_page 403 /my403.html; error_page 404 /my404.html; error_page 405 /my405.html; error_page 413 /my413.html; error_page 500

Re: app mvc behind proxy reverse

2020-08-06 Thread Francis Daly
On Thu, Aug 06, 2020 at 09:48:55AM -0600, Rick Gutierrez wrote: > El jue., 6 ago. 2020 a las 6:29, Francis Daly () escribió: Hi there, > > Can you see what the html-or-javascript that tells the browser where to > > POST the request, says about where to POST the request? > > The country file, is

Re: app mvc behind proxy reverse

2020-08-06 Thread Rick Gutierrez
El jue., 6 ago. 2020 a las 6:29, Francis Daly () escribió: > Hi francis > > Your nginx config says that when the client asks nginx for > /pais/agregareditar, nginx asks the upstream for /pais/agregareditar -- > your log at "05/Aug/2020:17:20:51" shows this request. > > Your nginx config says that

Re: how to configure request rate limiting by Kerberos authenticated user?

2020-08-06 Thread George Nica
Thank you Maxim. Adding an extra variable to the spnego auth module sounds intriguing, but also challenging because; as you mention "rate limiting happens before access checks" and this module mainly deals with access checks until now. Sounds like an extra level of proxying is the way ahead for now

Re: app mvc behind proxy reverse

2020-08-06 Thread Francis Daly
On Wed, Aug 05, 2020 at 05:31:26PM -0600, Rick Gutierrez wrote: Hi there, > Hi, I am having some problems to load an app made in mvc, when I > access the url and I want to edit a table to make a change, the proxy > returns me to the root of the project, and it does not stay in > app/pais Your ng