로드 밸런서로서의 nginx: 경로가 있는 업스트림

로드 밸런서로서의 nginx: 경로가 있는 업스트림

포트 9200에 로드 밸런서 역할을 하는 nginx 컨테이너가 있습니다. 이것은 구성 파일입니다.

proxy_ignore_headers Set-Cookie;
add_header 'Access-Control-Allow-Origin' '*';
add_header 'Access-Control-Allow-Headers' 'Range';


upstream backend {
        server 192.168.99.103:9500 weight=3;
        server 192.168.99.104:9500;
        server 192.168.99.105:9500;
    }

server {

listen 80;
server_name 172.17.0.1;

location = /LynyrdSkynyrdFreebirdAudio.mp4 {

            add_header 'Access-Control-Allow-Origin' '*';
            add_header 'Access-Control-Allow-Headers' 'Range';

            if ($request_method = OPTIONS ) {
               add_header Access-Control-Allow-Methods "GET, OPTIONS";
               add_header Content-Length 0;
               add_header Content-Type text/plain;
               return 200;
                }
            proxy_pass http://backend/;

            add_header X-Upstream  $upstream_addr;

        }

       location = /LynyrdSkynyrdFreebirdVideo.mp4 {
            add_header 'Access-Control-Allow-Origin' '*';
            add_header 'Access-Control-Allow-Headers' 'Range';

            if ($request_method = OPTIONS ) {
               add_header Access-Control-Allow-Methods "GET, OPTIONS";
               add_header Content-Length 0;
               add_header Content-Type text/plain;
               return 200;
                }

            proxy_pass http://backend;

            add_header X-Upstream  $upstream_addr;
        }

   }

이 컨테이너는 다음과 같은 방식으로 요청을 로드 밸런싱합니다. 요청이 도착하면 localhost:9200/LynyrdSkynyrdFreebirdVideo.mp43 localhost:9200/LynyrdSkynyrdFreebirdAudio.mp4개 서버에 걸쳐 요청 밸런싱을 수행합니다. 이 3개의 서버는 캐시 역할을 하는 3개의 nginx 컨테이너입니다. 이것은 nginx 캐시의 구성 파일입니다.

proxy_cache_path /tmp/nginx levels=1:2 keys_zone=my_zone:10m inactive=60m;
proxy_cache_key "$scheme$request_method$host$request_uri";
proxy_cache_methods GET HEAD POST;
proxy_cache_valid 200 206 100m;
proxy_ignore_headers Set-Cookie;
add_header 'Access-Control-Allow-Origin' '*' always;
add_header 'Access-Control-Allow-Headers' 'Range';
server {
    listen       80;
    server_name  172.17.0.1;

    #charset koi8-r;
    #access_log  /var/log/nginx/log/host.access.log  main;

    location / {
    }

    #error_page  404              /404.html;

    # redirect server error pages to the static page /50x.html
    #
    error_page   500 502 503 504  /50x.html;
    location = /50x.html {
        root   /usr/share/nginx/html;
    }

    # proxy the PHP scripts to Apache listening on 127.0.0.1:80
    #
    #location ~ \.php$ {
    #    proxy_pass   http://127.0.0.1;
    #}

    # pass the PHP scripts to FastCGI server listening on 127.0.0.1:9000
    #
    #location ~ \.php$ {
    #    root           html;
    #    fastcgi_pass   127.0.0.1:9000;
    #    fastcgi_index  index.php;
    #    fastcgi_param  SCRIPT_FILENAME  /scripts$fastcgi_script_name;
    #    include        fastcgi_params;
    #}

    # deny access to .htaccess files, if Apache's document root
    # concurs with nginx's one
    #
    #location ~ /\.ht {
    #    deny  all;
    #}

    location /demo/ {

    proxy_cache my_zone;
    add_header X-Proxy-Cache             $upstream_cache_status;
    proxy_set_header X-Real-IP           $remote_addr;
    proxy_set_header X-Forwarded-For     $remote_addr;

    proxy_set_header Host                $host;

    proxy_pass http://172.17.0.1:8700/shaka-player-master/demo/index1.html ;

    }

location   /media {

    proxy_cache my_zone;
    add_header X-Proxy-Cache             $upstream_cache_status;
    proxy_set_header X-Real-IP           $remote_addr;
    proxy_set_header X-Forwarded-For     $remote_addr;

    proxy_set_header Host                $host;

    proxy_pass http://172.17.0.1:8700/shaka-player-master/media/example-av.mpd ;

  }

location =  /example-av1.mpd {
    add_header 'Access-Control-Allow-Origin' '*';

    proxy_cache my_zone;
    add_header X-Proxy-Cache             $upstream_cache_status;
    proxy_set_header X-Real-IP           $remote_addr;
    proxy_set_header X-Forwarded-For     $remote_addr;

    proxy_set_header Host                $host;

    proxy_pass http://192.168.99.103:9600/shaka-player/media/example-av1.mpd;
  }



location =  /LynyrdSkynyrdFreebirdVideo.mp4 {
    add_header 'Access-Control-Allow-Origin' '*';
    add_header 'Access-Control-Allow-Headers' 'Range';


    proxy_cache my_zone;
    add_header X-Proxy-Cache             $upstream_cache_status;
    proxy_set_header X-Real-IP           $remote_addr;
    proxy_set_header X-Forwarded-For     $remote_addr;

    proxy_set_header Host                $host;

    proxy_pass http://192.168.99.103:9600/shaka-player/media/LynyrdSkynyrdFreebirdVideo.mp4 ;

  }

location =  /LynyrdSkynyrdFreebirdAudio.mp4 {
    add_header 'Access-Control-Allow-Origin' '*';
    add_header 'Access-Control-Allow-Headers' 'Range';


    proxy_cache my_zone;
    add_header X-Proxy-Cache             $upstream_cache_status;
    proxy_set_header X-Real-IP           $remote_addr;
    proxy_set_header X-Forwarded-For     $remote_addr;

    proxy_set_header Host                $host;

    proxy_pass http://192.168.99.103:9600/shaka-player/media/LynyrdSkynyrdFreebirdAudio.mp4;

  }

}

localhost:9200/LynyrdSkynyrdFreebirdVideo.mp4로드 밸런서(예: 또는 ) 를 가리키면 localhost:9200/LynyrdSkynyrdFreebirdAudio.mp4찾을 수 없습니다 404. 이 URL을 가리키면 로드 밸런서가 요청을 192.168.99.103(or 104, or 105):9500/LynyrdSkynyrdFreebirdVideo.mp4 또는 192.168.99.103(or 104, or 105):9500/LynyrdSkynyrdFreebirdAudio.mp4. 하지만 블록에서 지시문에 경로를 추가할 수 있는지는 upstream알 수 없습니다 .server

(or사실 이것이 바로 문제라고 생각합니다. 사실, 192.168.99.103 104 , or105 :9500/LynyrdSkynyrdFreebirdAudio(또는 Video).mp4 를 가리키면 )콘텐츠가 올바르게 표시됩니다.

답변1

해결됨:

다음과 같이 에 경로를 추가했습니다 http://backend.

  proxy_pass http://backend/LynyrdSkynyrdFreebirdVideo.mp4;

관련 정보