Nginx escuta em uma porta, só responde se configurado para a porta 80

6

SO: Funtoo. Liguei o NGINX à porta 81 (quero rodá-lo ao lado do meu servidor Apache por um curto período de tempo para facilitar a transição), e ele escuta na porta (se eu apontar para outra porta, usando o wget eu recebo "Conexão recusada", mas usando a porta 81 eu fico "conectado") mas nunca serve uma resposta HTML de qualquer tipo!

Ao executar um wget na porta, a partir do localhost, recebo:

# wget localhost:81
-2014-04-16 23:56:45- http://localhost:81/
Resolving localhost... 127.0.0.1
Connecting to localhost|127.0.0.1|:81... connected.
HTTP request sent, awaiting response...

Em outro computador ...

$ wget 192.168.18.42:81
-2014-04-16 23:57:19- http://192.168.18.42:81/
Connecting to 192.168.18.42:81... connected.
HTTP request sent, awaiting response...

Nada acontece depois disso. Os documentos existem, é o normal Funtoo nginx.conf.

ATUALIZAÇÃO: Eu posso fazer com que ele ouça a porta 80, mas ainda me chateia que eu não consiga fazê-lo funcionar em nenhuma porta ...

netstat -aWn | grep 81 | grep LISTEN
tcp 60 0 0.0.0.0:81 0.0.0.0:* LISTEN

Editar: Arquivos de configuração:

user nginx nginx;
worker_rlimit_nofile 6400;

error_log /var/log/nginx/error_log info;

events {
    worker_connections 1024;
    use epoll;
}

http {
    include /etc/nginx/mime.types;

    # This causes files with an unknown MIME type to trigger a download action in the browser:
    default_type application/octet-stream;

    log_format main
        '$remote_addr - $remote_user [$time_local] '
        '"$request" $status $bytes_sent '
        '"$http_referer" "$http_user_agent" '
        '"$gzip_ratio"';

    client_max_body_size 64m;

    # Don't follow symlink if the symlink's owner is not the target owner.

    disable_symlinks if_not_owner;
    server_tokens off;
    ignore_invalid_headers on;

    gzip off;
    gzip_vary on;
    gzip_types text/plain text/css application/json application/x-javascript text/xml application/xml application/xml+rss text/javascript application/javascript text/x-js image/x-icon image/bmp;

    sendfile on;
    tcp_nopush on;
    tcp_nodelay on;

    index index.html;
    include /etc/nginx/sites-enabled/*;
}

Bloco do servidor:

server {
    listen  *:81;
    root    /usr/share/nginx/html;
    location / {
        index   index.html;
    }
}
    
por Aviator45003 17.04.2014 / 15:05

2 respostas

3

Acontece o grande problema? Nginx tinha setado worker_processes para 0. Eu adicionei uma linha configurando para auto no topo do meu nginx.conf, e tudo estava bem com o mundo!

Obrigado a todos pelo seu tempo e paciência.

    
por 24.04.2014 / 01:21
3

Experimente o seguinte bloco de servidores

server {
   listen       81 default_server;
    server_name _;    
    root    /usr/share/nginx/html;
    location / {
        index   index.html;
    }
}

O sublinhado _ é um curinga, também o *: 81 provavelmente não faz o que você espera, apenas use o número da porta.

Em seguida, teste suas configurações com nginx -t

nginx: the configuration file /etc/nginx/nginx.conf syntax is ok
nginx: configuration file /etc/nginx/nginx.conf test is successful

Reinicie o nginx

service nginx restart

Teste com netstat

root@gitlab:~# netstat -napl | grep 80
tcp        0      0 0.0.0.0:80              0.0.0.0:*               LISTEN      7903/nginx      
tcp        0      0 127.0.0.1:8080          0.0.0.0:*               LISTEN      2662/unicorn.

Atualizar

Eu instalei o nginx em um sistema de teste. Com o arquivo nginx.conf e uma mudança de 1 linha para / etc / nginx / sites-enabled / default, consegui recuperar arquivos da porta 81

cat /etc/nginx/sites-enabled/default
server {

    listen   81;
    server_name localhost;
    root /usr/share/nginx/www;
    index index.html index.htm;


    location / {
        try_files $uri $uri/ /index.html;
    }

    location /doc/ {
        alias /usr/share/doc/;
        autoindex on;
        allow 127.0.0.1;
        deny all;
    }

}

Saída Netstat

netstat -napl | grep 81
tcp        0      0 0.0.0.0:81              0.0.0.0:*               LISTEN      3432/nginx

Faça o download do arquivo

$ wget localhost:81

Conteúdo do arquivo

$ cat index.html
<html>
<head>
<title>Welcome to nginx!</title>
</head>
<body bgcolor="white" text="black">
<center><h1>Welcome to nginx!</h1></center>
</body>
</html>

Update2

Porta de teste

 root@gitlab:# nc -vz localhost 81
 Connection to localhost 81 port [tcp/*] succeeded!
 root@gitlab:# nc -vz localhost 443
 nc: connect to localhost port 443 (tcp) failed: Connection refused
    
por 23.04.2014 / 22:33