码迷,mamicode.com
首页 > 数据库 > 详细

Oracle:使用nginx做为代理访问

时间:2020-05-03 22:01:32      阅读:373      评论:0      收藏:0      [点我收藏+]

标签:listen   timeout   源码   acl   serve   with   ESS   oracle   启用   

nginx 必须启用 启用 --with-stream 模块。

./configure --with-stream --with-http_ssl_module  --with-http_stub_status_module

 

可下载源码编译。

nginx.conf的配置:

worker_processes  1;

events {
    worker_connections  1024;
}

stream {
    server{
        listen 1521 so_keepalive=on;
        proxy_pass 10.1.101.3:1521;
        proxy_timeout 72h;
    }
}
~

 

更一般的写法:

worker_processes  1;

events {
    worker_connections  1024;
}

stream {
upstream oracle{ server 10.1.101.3:1521; }
server { listen 1521; proxy_pass oracle; } }

 

Oracle:使用nginx做为代理访问

标签:listen   timeout   源码   acl   serve   with   ESS   oracle   启用   

原文地址:https://www.cnblogs.com/xiluhua/p/12823464.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!