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,662 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
Jun 9, 2022 - Python
-
Updated
Jun 1, 2022 - C
-
Updated
Jun 9, 2022 - Go
Need to upgrade kind testing to v0.14.0 so we can test against k8s 1.24 releases
https://github.com/kubernetes/ingress-nginx/blob/main/.github/workflows/ci.yaml#L223
/kind feature
/good-first-issue
/priority backlog
/triage accepted
-
Updated
Oct 20, 2021 - Shell
-
Updated
May 26, 2022
Description
Currently we are using Semantic Pull Requests to check in PR but the project is no longer maintained. we need some alternatives.
e.g.
If anyone is interested in this, please submit a PR to complete this replacement
-
Updated
Jun 6, 2022 - TypeScript
-
Updated
Jun 9, 2022 - JavaScript
-
Updated
Jun 8, 2022 - Shell
-
Updated
Jun 9, 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
Jun 2, 2022 - PHP
-
Updated
Jun 9, 2022 - Go
Describe the bug
We have activated the event and post-rollout webhook and canary analysis is skipped so far. However, we never get triggered by the post-rollout webhook. With the event webhook we get this message "Promotion completed! Canary analysis was skipped for my-test-app". But no post-rollout webhook call.
To Reproduce
Our canaries YAML:
apiVersion: flagger.a
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
Jun 2, 2022 - Jinja
-
Updated
Jun 9, 2022 - Python
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