Со статикой очень просто.
Используйте конструкцию try_files
примерно это выглядит так:
upstream backend {
server backend1.example.com weight=5;
server backend2.example.com:8080;
server unix:/tmp/backend3;
}
location / {
try_files $uri $uri/ @cluster;
}
location @cluster {
proxy_pass
http://backend;
(
Read more... )