nginx代理Oracle

创建日期:2024-06-21
更新日期:2024-12-18

打开 nginx\conf\nginx.conf ,添加以下配置即可。

http {
}

stream {
    upstream oracle {
        server 192.168.23.108:1521;
    }
    server {
        listen 1521;
        allow all;
        proxy_connect_timeout 60s;
        proxy_socket_keepalive on;
        proxy_pass oracle;
    }
}