LINUX.ORG.RU

История изменений

Исправление beastie, (текущая версия) :

# catch-all vhost
server {
    listen ip:80 default;
    server_name _;
    return 403; 
}

# actual vhost
server {
    listen ip:80;
    server_name example.com;
    access_log /var/log/nginx/ip.log main;
    location / {
        proxy_pass http://ip:8080;
    }
}

# and so on ...

Исходная версия beastie, :

# additional default vhost
server {
    listen ip:80 default;
    server_name _;
    return 403; 
}

# actual vhost
server {
    listen ip:80;
    server_name example.com;
    access_log /var/log/nginx/ip.log main;
    location / {
        proxy_pass http://ip:8080;
    }
}

# and so on ...