登录
首页 >  文章 >  linux

干货:基于nginx的tcp反向代理案例

时间:2025-01-29 14:49:05 168浏览 收藏

你在学习文章相关的知识吗?本文《干货:基于nginx的tcp反向代理案例》,主要介绍的内容就涉及到,如果你想提升自己的开发能力,就不要错过这篇文章,大家要知道编程理论基础和实战操作都是不可或缺的哦!

干货:基于nginx的tcp反向代理案例

本文将演示如何在CentOS 7.5系统上搭建基于Nginx的TCP反向代理。

一、系统更新与Nginx安装

首先,更新系统软件包:

$ yum -y update

然后,安装Nginx:

# 添加Nginx软件源 (参考 http://nginx.org/en/linux_packages.html#stable)
$ vi /etc/yum.repos.d/nginx.repo
[nginx]
name=nginx repo
baseurl=http://nginx.org/packages/centos/7/$basearch/
gpgcheck=0
enabled=1

$ yum -y install nginx

验证安装:

$ nginx -V

二、Nginx配置

修改主配置文件 /etc/nginx/nginx.conf

user nginx;
worker_processes auto;

error_log /var/log/nginx/error.log warn;
pid /var/run/nginx.pid;

events {
    worker_connections 1024;
}

stream {
    log_format proxy '$remote_addr [$time_local] $protocol $status $bytes_sent $bytes_received $session_time "$upstream_addr" "$upstream_bytes_sent" "$upstream_bytes_received" "$upstream_connect_time"';

    access_log /var/log/nginx/tcp-access.log proxy;
    open_log_file_cache off;

    include /etc/nginx/conf.d/*.stream;
}

http {
    include /etc/nginx/mime.types;
    default_type application/octet-stream;

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

    access_log /var/log/nginx/access.log main;

    sendfile on;
    #tcp_nopush on;

    keepalive_timeout 65;

    # 关闭版本显示
    server_tokens off;

    # gzip 压缩传输
    gzip on;
    gzip_min_length 1k;
    gzip_buffers 4 16k;
    gzip_http_version 1.0;
    gzip_comp_level 2;
    gzip_types text/plain application/x-javascript text/css application/xml;
    gzip_vary on;

    # 配置代理参数
    proxy_redirect off;
    proxy_set_header Host $host;
    proxy_set_header X-Real-IP $remote_addr;
    proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
    proxy_connect_timeout 90;
    proxy_read_timeout 90;
    proxy_send_timeout 90;
    proxy_buffer_size 4k;

    # 缓存配置
    proxy_temp_file_write_size 264k;
    proxy_temp_path /var/cache/nginx/nginx_temp;
    proxy_cache_path /var/cache/nginx/nginx_cache levels=1:2 keys_zone=cache_one:200m inactive=5d max_size=400m;
    proxy_ignore_headers X-Accel-Expires Expires Cache-Control Set-Cookie;

    include /etc/nginx/conf.d/*.conf;
}

(请根据实际情况修改配置文件,例如添加具体的upstream配置) 此配置示例包含了HTTP和Stream模块的配置,以及一些性能优化选项,例如gzip压缩和缓存。 你需要根据你的具体需求,在 /etc/nginx/conf.d/ 目录下创建相应的配置文件来定义upstream服务器和反向代理规则。

三、重启Nginx

完成配置修改后,重启Nginx使配置生效:

$ systemctl restart nginx

通过以上步骤,你就可以在CentOS 7.5上搭建一个基于Nginx的TCP反向代理。 记住,你需要根据你的具体应用场景配置相应的upstream服务器和反向代理规则。

好了,本文到此结束,带大家了解了《干货:基于nginx的tcp反向代理案例》,希望本文对你有所帮助!关注golang学习网公众号,给大家分享更多文章知识!

相关阅读
更多>
最新阅读
更多>
课程推荐
更多>