mirror of
https://github.com/flancian/garden.git
synced 2026-08-06 06:26:20 +00:00
573 B
573 B
nginx caching
- push agora server
- pull before and after cache
- added this to nginx.conf in http scope:
uwsgi_cache_valid any 30s;
uwsgi_cache_path /tmp/agora-cache keys_zone=agora-cache:1000m;
- push agora server
- and this is what the agora's
locationlooks like in the virtual host:
- and this is what the agora's
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;
}