nginx

nginx is an HTTP and reverse proxy server, a mail proxy server, and a generic TCP/UDP proxy server. Nginx was written with an explicit goal of provide high performance on sites with high traffic, so it can be used as a reverse proxy, load balancer and HTTP cache.
Here are 9,535 public repositories matching this topic...
Feature request
Place the access_log
and error_log
directives inside the main server block instead of http block.
Feature description
Disable access_log
at http block:
File: /etc/nginx/nginx.conf
# ...
http {
# ...
access_log off;
# ...
}
# ...
Enable per site access_log
and error_log
at main server block:
File: /etc/nginx/
-
Updated
May 16, 2022 - Python
-
Updated
May 17, 2022 - C
-
Updated
May 18, 2022 - Go
-
Updated
Oct 20, 2021 - Shell
-
Updated
May 6, 2022
Description
As a User, I want to use oAuth2 with PKCE support, so that I can configure an oAuth2 connection without using client/secret.
I am using an IDP. which has implemented the Authorization Code Flow.
From the docs of the IdP:
The IdP implements the [Authorization Code Flow](https://openid.net/specs/openid-con
-
Updated
May 6, 2022 - TypeScript
-
Updated
May 14, 2022 - JavaScript
-
Updated
May 15, 2022 - Shell
-
Updated
May 17, 2022 - C++
-
Updated
Jul 18, 2019
-
Updated
Feb 8, 2022 - Python
I use naxsi with nginx. I want to add request id which is used by nginx to nginx error logs when blocked by naxsi. Is it possible ? Thanks for help.
-
Updated
May 13, 2022 - PHP
-
Updated
May 18, 2022 - Go
Expected Behaviour
When using K8s 1.22 and newer, use the new namespace for ingress, for older use the deprecated API (apiVersion: extensions/v1beta1
)
Several apps gener
-
Updated
May 9, 2022 - Jinja
-
Updated
Apr 29, 2022 - Python
-
Updated
May 17, 2022 - Shell
Created by Igor Sysoev
Released October 4, 2004
- Repository
- nginx/nginx
- Website
- nginx.org
- Wikipedia
- Wikipedia
expected result:
example.com?param=abc -> will become example.com
example.com/?param=abc -> will stay example.com/
actual result:
example.com?param=abc -> become example.com
example.com/?param=abc -> stays example.com/?param=abc