nginx.conf 490 Bytes
Newer Older
Matteo's avatar
Matteo committed
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
server {
    listen 80;

    location /packager/ {
        proxy_pass http://packager:80/;
    }

    # location /audio-analyser {
    #     proxy_pass http://audio-analyser:80;
    # }

    # location /video-analyser {
    #     proxy_pass http://video-analyser:80;
    # }

    location /tape-audio-restoration/ {
        proxy_pass http://tape-audio-restoration:80/;
    }

    location /tape-irregularity-classifier/ {
        proxy_pass http://tape-irregularity-classifier:80/;
    }
}