サーバからの応答に独自ヘッダを乗せると、ブラウザから読めない。誰得制約。
https://developers.google.com/web/updates/2015/03/introduction-to-fetch#response_types
2020/12/12 12:16:33 [warn] 7233#7233: *13 an upstream response is buffered to a temporary file /var/cache/nginx/fastcgi_temp/0/01/0000000010 while reading upstream, client: 192.168.207.1, server: the_server, request: "GET /api/random_image.php?blob=0 HTTP/2.0", upstream: "fastcgi://unix:/var/run/php/php7.4-fpm.sock:", host: "the_server", referrer: ""
画像をランダムに返すAPIを作っていたら、こんなんが出まくって閉口。nginx.confをいじるぞと調べたら
proxy_buffers 4 256k;
proxy_buffer_size 128k;
proxy_busy_buffers_size 256k;
こんなんばっかり出てきたが全く関係なかった。そう、*リバースプロキシ関係ないから。*アホだ。
php-fpmだろうと気づいて、
location ~ \.php$ {
root /var/www/bath;
fastcgi_pass unix:/var/run/php/php7.4-fpm.sock;
fastcgi_index index.php;
fastcgi_param ........
fastcgi_buffers 50 32k; >>> これ追加
で解決。
記事
カテゴリ
Amazon | Android | apache | Arduino | AWS | bash | bluetooth | Books | CakePHP | CakePHP3 | CakePHP4 | Chrome | Chromebook | CodeIgniter | CSS | Docker | Eclipse | Emacs | etc | Firefox | Flask | Gadget | git | Gnome | Google | Heroku | HTML | hugo | Internet | iPhone | IS01 | IS03 | Java | JavaScript | json | Kotlin | Laravel | LINE | magento | mysql | nginx | nodejs | Oops | PC | Perl | php | Python | Qt | Ruby | ruby | Shell | ssh | tdiary | twitter | ubuntu | unix | VirtualBox | Web | Windows | windows | WindowsMobile | WX5 | YAML | zsh | ここか | そば | つくる | つり | できごと | アクアリウム | ギター | セキュリティ | プリンタ | ベース | ボクシング | ポエム | マネー | メシ | ラズパイ | 仕事 | 作家 | 壮絶 | 妄想 | 忘れる | 料理 | 旅 | 暑い | 痛い | 社会 | 自転車 | 豚 | 車 | 車輪 | 酒 | 野球 | 銭湯 | 音楽 | 食
全部 : / 今日 :
近頃
profile