📚 node [[uwsgi caching]]

uwsgi caching

⥅ node [[nginx-caching]] pulled by user

nginx caching

  uwsgi_cache_valid any 30s;
  uwsgi_cache_path /tmp/agora-cache keys_zone=agora-cache:1000m;
  location / {
      uwsgi_cache agora-cache;
      uwsgi_cache_key $scheme$host$request_uri;
      include uwsgi_params;
      # /home/agora/agora-server/run-prod.sh to run.
      uwsgi_pass unix:/tmp/agora-uwsgi.sock;
  }
📖 stoas
⥱ context