nginx配置为apache config

时间:2018-06-12 10:32:01

标签: apache nginx config

我刚刚定义了nginx-config并希望在apache上使用它。

我完全无能为力。 是否有转换nginx-> apache的服务? 或者任何可以提供帮助的人? 提前谢谢。

相关的nginx-settings:

location /e34/api/ws {

      allow all;
      proxy_pass                  http://box_backend/e34/api/ws;
      proxy_set_header            Host            $http_host;
      proxy_set_header            X-Real-IP       $remote_addr;
      proxy_set_header            X-Forwarded-For  $proxy_add_x_forwarded_for;
      proxy_connect_timeout 3600;
      proxy_send_timeout 3600;
      proxy_read_timeout 3600;
      send_timeout 3600;

      # enables WS support
      proxy_http_version 1.1;
      proxy_set_header Upgrade $http_upgrade;

      #this makes non WS crash
      proxy_set_header Connection "upgrade";
}

0 个答案:

没有答案