J'ai deux emplacements dans la configuration nginx qui fonctionnent :
emplacement ^~ /media/ {
proxy_pass http://backend.example.com;
}
emplacement ^~ /static/ {
proxy_pass http://backend.example.com;
}
Comment puis-je regrouper ces deux en un seul emplacement ?
Ce que j'ai déjà fait :
J'ai essayé cette suggestion
emplacement ~ ^/(static|media)/ {
proxy_pass http://backend.example.com;
}
mais ça ne fonctionne pas pour moi.
Aussi, lorsque je n'utilise pas de backends, la configuration suivante fonctionne correctement :
emplacement ~ ^/(static|media)/ {
root /home/project_root;
}
mise à jour (quelques chaînes du journal)
xx.xx.xx.xx - - [31/Déc/2013:13:48:18 +0000] "GET /content/11160/ HTTP/1.1" 200 5310 "-" "Mozilla/5.0 (Windows NT 6.2; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/31.0.1650.63 Safari/537.36 OPR/18.0.1284.68"
xx.xx.xx.xx - - [31/Déc/2013:13:48:18 +0000] "GET /static/font-awesome/css/font-awesome.min.css HTTP/1.1" 404 200 "http://www.example.com/content/11160/" "Mozilla/5.0 (Windows NT 6.2; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome$
xx.xx.xx.xx - - [31/Déc/2013:13:48:18 +0000] "GET /static/bootstrap/css/bootstrap.min.css HTTP/1.1" 404 200 "http://www.example.com/content/11160/" "Mozilla/5.0 (Windows NT 6.2; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/31.0.$
xx.xx.xx.xx - - [31/Déc/2013:13:48:18 +0000] "GET /static/css/custom.css HTTP/1.1" 404 200 "http://www.example.com/content/11160/" "Mozilla/5.0 (Windows NT 6.2; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/31.0.1650.63 Safari/53$
xx.xx.xx.xx - - [31/Déc/2013:13:48:18 +0000] "GET /static/colorbox/colorbox.css HTTP/1.1" 404 200 "http://www.example.com/content/11160/" "Mozilla/5.0 (Windows NT 6.2; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/31.0.1650.63 Sa$
xx.xx.xx.xx - - [31/Déc/2013:13:48:18 +0000] "GET /static/colorbox/jquery.colorbox-min.js HTTP/1.1" 404 200 "http://www.example.com/content/11160/" "Mozilla/5.0 (Windows NT 6.2; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/31.0.$
xx.xx.xx.xx - - [31/Déc/2013:13:48:18 +0000] "GET /static/js/scripts.js HTTP/1.1" 404 200 "http://www.example.com/content/11160/" "Mozilla/5.0 (Windows NT 6.2; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/31.0.1650.63 Safari/537$
SOLUTION
En fait, ma solution fonctionne bien :
emplacement ~ ^/(static|media)/ {
root /home/project_root;
}
et le problème n'a rien à voir avec les backends. Comme Guido Vaccarella l'a correctement noté, cela venait juste après un autre emplacement ~ ...
qui correspondait, de sorte que mon emplacement ~ ...
n'avait aucune chance de s'exécuter.