nginx转发到http

时间:2017-05-22 09:33:31

标签: ssl nginx port forward nginx-location

以下情况: 我有一个在localhost:9000上运行的播放框架服务器。如果有人现在通过http从外部访问该服务器,则nginx会将http请求重定向到localhost:9000。

现在我在该服务器上单独运行一个rshiny服务器,它在端口9271(https)上侦听,并且必须将流量重定向到9270(http)。

我已经尝试了一些东西,这个是最后一个版本,我不能开始工作:

server {
    listen 9271;
    server_name _;

    ssl    on;
    ssl_session_timeout  5m;
    ssl_protocols  SSLv2 SSLv3 TLSv1;
    ssl_ciphers  ALL:!ADH:!EXPORT56:RC4+RSA:+HIGH:+MEDIUM:+LOW:+SSLv2:+EXP;
    ssl_prefer_server_ciphers   on;

    ssl_certificate /etc/nginx/ssl/xxx.pem;
    ssl_certificate_key /etc/nginx/ssl/xxx.key;

    access_log /var/log/nginx/access.log xxx_host;
    error_log /var/log/nginx/error.log;

    location / {
        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_set_header    X-Forwarded-Proto $scheme;

        proxy_pass          http://localhost:9270;
        proxy_read_timeout  90;

        proxy_redirect      http://localhost:9270/ $scheme://$host/;
    }
}

0 个答案:

没有答案