This project was created to generate an infinite file with "0"
This program open an http server on port 8090 and generate the file on any path
Just proxy_pass
as usual:
server {
location /infinite.file {
proxy_ignore_client_abort off;
proxy_pass http://go-http-infinite:8090;
}
}