Nginx falha ao redirecionar para o contêiner docker

0

Eu tenho a configuração

docker-compose:

nginx:
    restart: always
    build: nginx/.       // loads nginx:alpine image + copies the config
    ports:
        - 80:80
        - 1337:1337
    links:
        - rose:rose

rose:
    build: rose/.        // simple website, based on node:latest
    restart: always
    expose:
        - 1337

nginx.conf:

upstream docker-rose {
    server rose:1337;
}

server {
    listen 0.0.0.0:1337;

    gzip on;                                  // + some other gzip crap

    location ~ ^/(.*)/ {

        proxy_pass http://docker-rose;
        proxy_redirect     off;

        proxy_set_header Host $http_host;      // + some other proxy headers thingy
    }
}

docker-compose ps:

nginx_1          nginx -g daemon off;             Up       0.0.0.0:1337->1337/tcp, 0.0.0.0:80->80/tcp 
rose_1           npm start                        Up       1337/tcp

Então, eu espero que o nginx ouça a porta 1337 e passe tudo para o rose através da porta interna 1337.

No entanto, quando eu abro localhost: 1337 no navegador, eu recebo

nginx_1 | 2018/04/29 14:57:22 [error] 9#9: *28 "/etc/nginx/html/index.html" is not found (2: No such file or directory), client: 172.19.0.1, server: , request: "GET / HTTP/1.1", host: "localhost:1337"

Tem um trabalho: para redirecionar tudo_de_dados: 1337 para interno_contêiner: 1337. Por que na Terra ele tenta carregar o /etc/nginx/html/index.html?

EDIT: Então, eu tenho o ID do contêiner via docker ps e logado via docker exec -ti %id% sh . Tentando pingar rosa:

/ # ping rose 
PING rose (172.19.0.11): 56 data bytes 
64 bytes from 172.19.0.11: seq=0 ttl=64 time=0.083 ms 
64 bytes from 172.19.0.11: seq=1 ttl=64 time=0.116 ms

Tentando executar o ping localhost com porta 1337:

/ # ping localhost:1337
PING localhost:1337 (127.0.0.1): 56 data bytes
64 bytes from 127.0.0.1: seq=0 ttl=64 time=0.080 ms
    
por Vitalii Vasylenko 29.04.2018 / 16:59

1 resposta

1

Obrigado Thomas por irem em direção ao canal irc, eles me deram uma dica correta. O problema estava com

location ~ ^/(.*)/ {

Foi o suficiente para simplificá-lo para

location ~ / {

Agora funciona!

    
por Vitalii Vasylenko 29.04.2018 / 20:53