Hello,
I have a problem with nginx 1.6.3-1 on arm (older versions are working normal). When I try to use nginx as a reverse proxy the worker process dies.
$this->bbcode_second_pass_code('', '[alert] 17513#0: worker process 17519 exited on signal 11 (core dumped)')
It doesn't happen on x86_64. This seems like a rather strange bug. That's why I wanted to ask if someone could reproduce this behaviour before I fill out a bug report.
One way to reproduce this:
1) Install nginx 1.6.3
2) Edit /etc/nignx.conf
$this->bbcode_second_pass_code('', '
#user html;
worker_processes 1;
#error_log logs/error.log;
#error_log logs/error.log notice;
#error_log logs/error.log info;
#pid logs/nginx.pid;
events {
worker_connections 1024;
}
http {
include mime.types;
default_type application/octet-stream;
#log_format main '$remote_addr - $remote_user [$time_local] "$request" '
# '$status $body_bytes_sent "$http_referer" '
# '"$http_user_agent" "$http_x_forwarded_for"';
#access_log logs/access.log main;
sendfile on;
#tcp_nopush on;
#keepalive_timeout 0;
keepalive_timeout 65;
#gzip on;
server {
listen 7777;
location / {
proxy_pass http://127.0.0.1:9999;
}
}
}
')
3) Start nginx
$this->bbcode_second_pass_code('', 'systemctl start nginx')
4) Start a web-server on port 9999
$this->bbcode_second_pass_code('', 'python3 -m http.server 9999')
5) Go to http://your_server:7777
If you see a directory listing then something is wrong with my RaspberryPie, if you get a connection interrupted error then this is a bug.
Thanks!