ฉันจะกำหนดค่าบล็อกการตั้งค่าที่ใช้ร่วมกันสำหรับชุดของตำแหน่งที่ตั้งได้อย่างไร
location / {
proxy_pass http://127.0.0.1:9000/;
proxy_redirect off;
proxy_set_header Host $http_host;
proxy_set_header X-Real-IP $remote_addr;
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
proxy_cache cache-test;
proxy_cache_valid 200 302 24h;
proxy_cache_valid 404 60s;
add_header X-Cache-Status $upstream_cache_status;
}
location /api/0.1/user{
proxy_cache_key /user/$http_authorization;
}
ตอนนี้ถ้าฉันพยายามเข้าถึง /api/0.1/user แล้วฉันจะได้รับ 404 เพราะมันไม่ผ่านการร้องขอไปที่ 127.0.0.1:9000