Skip to content
#

nginx

nginx logo

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 6,451 public repositories matching this topic...

dorongold
dorongold commented Sep 11, 2019

Summary

Currently Kong supports writing configuration in a file, in YAML or JSON.
To provide a more flexible configuration, especially for those running Kong in different environments (dev, staging, production), an option to write configuration in lua can be very useful.

Additional Details

There are many use-cases that come to mind:

  • Using environment variables inside the d
tuxmainy
tuxmainy commented Apr 5, 2020

Hi,
I had a rough time to get IPv6 working with the actual ip addresses of the clients and not the docker host IPv4 (yes, 4) address. The purpose of this issue is:

a) someone with more docker knowledge should check if I have done things right
b) Jason, I kindly ask you to add this to the documentation page of your nginx-proxy repository even if this is not fully nginx-proxy related but as you

goaccess
rgarrigue
rgarrigue commented Feb 10, 2020

Hi there

I'm trying to parse this king of lines, from a python flask service whose log format is %(asctime)s [%(process)d] (%(levelname)s) (%(name)s): %(message)s

2020-02-10 13:58:38,594 [31383] (INFO) (flask.app): request: OPTIONS https://server_hostname/0.1/token/a_big_uuid {'Host': 'server_hostname', 'X-Script-Name': '/api/auth', 'X-Forwarded-For': 'an_IP_address', 'Connection': 'c
ed29
ed29 commented Jan 25, 2020

Ⅰ. Issue Description

sysguard页面中的安装方法好像对新版失效了吧?按那个方法操作就会报错。
页面地址:http://tengine.taobao.org/document_cn/http_sysguard_cn.html

Ⅱ. Describe what happened

Ⅲ. Describe what you expected to happen

Ⅳ. How to reproduce it (as minimally and precisely as possible)

Ⅴ. Anything else we need to know?

  1. If applicable, add nginx [debug log doc](http://
aniketpanjwani
aniketpanjwani commented Nov 29, 2019

What is the problem?

I've succesfully installed Gitea using the one-click install on a fresh install of CapRover. When I try to install drone-gitea using the one-click Install, I get the following error at the 7th step: "Failed: Error: Request failed with status code 500" .

If applicable, content of captain-definition file:

N/A

Steps to reproduce the problem:

  1. Install Gitea
f2d
f2d commented Jun 19, 2017

With this code in my server blocks (included as a snippet):

if ($time_iso8601 ~ "^(?<year>\d{4})-(?<month>\d{2})-(?<day>\d{2})") {}

access_log /var/log/nginx/$server_log_prefix.access.$year-$month-$day.log;

For some requests (probably something automated, probably invalid, maybe even malformed) nginx ends up with just this filename: ".access.--.log"

Depending on whether it

sumory
sumory commented Jul 31, 2017

有同学经常提问针对application/x-www-form-urlencoded类型的post请求,在使用分流插件后获取不到post参数,大部分都是因为配置不当或者对Nginx相关知识点理解不清晰导致的。

下面介绍一个相关issue的正确配置:

  1. nginx.conf里配置一个upstream:
upstream business_upstream {
        server 127.0.0.1:8003;
}
  1. 然后配一个server用来作为business_upstream的服务提供者:
server {
        listen 8003;
        server_name localhost 127.0.0.1;
        access_log ./log

Created by Igor Sysoev

Released October 4, 2004

Repository
nginx/nginx
Website
nginx.org
Wikipedia
Wikipedia

Related Topics

nginx-cache nginx-plus nginx-proxy nginx-server nginx-unit
You can’t perform that action at this time.