You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
use openresty as a http reverse proxy, upload a file about 1.1M go error describe below.
image: openresty/openresty:jammy
nginx version: openresty/1.25.3.2
nginx.conf in /usr/local/openresty/nginx/conf/nginx.conf (open the debug log):
# nginx.conf -- docker-openresty## This file is installed to:# `/usr/local/openresty/nginx/conf/nginx.conf`# and is the file loaded by nginx at startup,# unless the user specifies otherwise.## It tracks the upstream OpenResty's `nginx.conf`, but removes the `server`# section and adds this directive:# `include /etc/nginx/conf.d/*.conf;`## The `docker-openresty` file `nginx.vh.default.conf` is copied to# `/etc/nginx/conf.d/default.conf`. It contains the `server section# of the upstream `nginx.conf`.## See https://github.com/openresty/docker-openresty/blob/master/README.md#nginx-config-files##user nobody;#worker_processes 1;# Enables the use of JIT for regular expressions to speed-up their processing.pcre_jit on;
error_log logs/error.log debug;
#pid logs/nginx.pid;events {
worker_connections1024;
}
http {
include mime.types;
default_type application/octet-stream;
# See Move default writable paths to a dedicated directory (#119)# https://github.com/openresty/docker-openresty/issues/119client_body_temp_path /var/run/openresty/nginx-client-body;
proxy_temp_path /var/run/openresty/nginx-proxy;
fastcgi_temp_path /var/run/openresty/nginx-fastcgi;
uwsgi_temp_path /var/run/openresty/nginx-uwsgi;
scgi_temp_path /var/run/openresty/nginx-scgi;
sendfile on;
#tcp_nopush on;#keepalive_timeout 0;keepalive_timeout65;
#gzip on;include /etc/nginx/conf.d/*.conf;
# Don't reveal OpenResty version to clients.# server_tokens off;
}
use openresty as a http reverse proxy, upload a file about 1.1M go error describe below.
Did some google and got this:
https://forum.nginx.org/read.php?21,118976,278732#msg-278732
The text was updated successfully, but these errors were encountered: