<- Back

Nginx配置 http从stream中获取真实客户端ip

Created at 2022-10-28 18:25:45

Last updated at 2022-10-28 18:25:45

4423 Clicks

将nginx作为webapp的前置端,使用nginx控制是否转发给webapp,还是转发给http服务。
其中分发的原来请自行搜索学习。

配置使用了nginx的stream等模块,在Ubuntu 20.04上的Nginx v.1.18.0(来自nginx官方apt源),所需的模块都启用了。

理论上就是通过proxy_protocol从stream将客户端ip传给http,在http的log_format中,将remote_addr更换成proxy_protocol_addr即可。

proxy_protocol在使用时注意,在输出时,使用"proxy_protocol on;"来配置,接受时在listen的末尾加上”proxy_protocol“即可。

但是webapp在接收tcp时,不能处理proxy_protocol,所以在转发给webapp之前,需要再将proxy_protocol去掉,只需多一步转发即可。

具体配置nginx.conf开头内容如下:

stream {
    log_format basic '$remote_addr - $remote_user [$time_local] '
                     '$protocol $status $bytes_sent $bytes_received '
                     '$session_time';
    map $ssl_preread_server_name $backend {
        webapp6.domain.com unix:/run/nginx-webapp-stream.sock;
        webapp.domain.com unix:/run/nginx-webapp-stream.sock;
        default 127.0.0.1:443;
    }
    server {
        listen unix:/run/nginx-webapp-stream.sock proxy_protocol;
        proxy_pass 127.0.0.1:8443;
    }
    server {
        listen 0.0.0.0:443;
        listen [::]:443;
        proxy_pass $backend;
        ssl_preread on;
        proxy_protocol on;
    }
}

http {
    log_format combined '$proxy_protocol_addr - $remote_user [$time_local] '
                        '"$request" $status $body_bytes_sent '
                        '"$http_referer" "$http_user_agent"';
    server {
        listen 127.0.0.1:80 proxy_protocol;
        listen [::1]:443 ssl proxy_protocol;
        ...
    }
}

Tags:ITNetworkUbuntuLinuxtrojanproxy

25 Comments

TobiasInhiT (no.reply.NicolasFischer@gmail.com)
#175

Howdy-doody! owendswang.com Did you know that it is possible to send an appeal legally and with

Created at 2024-05-15 18:34:44

JamesTus (qnw25a5s@youremailglobal.com)
#174

Men dating men sample tenderness, consistency, and the belle of relationships in their own incompara

Created at 2024-05-06 01:24:36

Robertelony (f1xysre6@webmailwc.com)
#173

Men dating men sample love, union, and the beauty of relationships in their own unmatched way. htt

Created at 2024-05-05 07:28:12

JamesTus (bj11lexg@youremailglobal.com)
#172

Men dating men participation love, connecting, and the beauty of relationships in their own unique w

Created at 2024-04-26 17:14:43

Robertelony (mlweko3p@webmailwc.com)
#171

Men dating men sample tenderness, consistency, and the dream of relationships in their own unique wa

Created at 2024-04-24 07:31:40

@ 2019-2024 OWENDSWANG
Contact me: owendswang@qq.com