proxypass

Cloudflare 反向代理/代理传递
proxypass

Cloudflare 反向代理/代理传递

希望这是一个简单的问题。 是否可以像在普通反向代理 Web 服务器设置中一样使用 Cloudflare 来代理传递请求? 我们有一个子域,我们希望将所有请求重写到另一个子域(而不是重定向)。 我们希望请求重写如下; subdomain.example.com/login (IP 1.2.3.4) -> test-subdomain.example.com/login (IP 2.3.4.5) 有了这个,服务器将为2.3.4.5 (test-subdomain.example.com/login)来自以下地址的请求提供文件subdomain....

Admin

绕过 apache SSL 并改用 tomcat
proxypass

绕过 apache SSL 并改用 tomcat

我不希望我的客户端与 Apache Web 服务器协商 SSL 连接,而是希望它们与其背后的 tomcat 服务器协商。我该怎么做? 我当前的httpd.conf配置是: Listen 443 https SSLProxyEngine On ProxyPass / https://localhost:8443/ ProxyPassReverse / https://localhost:8443/ <VirtualHost _default_:443> SSLProxyEngine On ProxyPass / https://loca...

Admin

使用 https 和虚拟主机为 nginx 设置自定义错误页面
proxypass

使用 https 和虚拟主机为 nginx 设置自定义错误页面

我们有一个 nginx(OpenResty 1.4.2.7)实例充当负载平衡器。它有两个服务器指令,一个用于服务一个特定站点(我们称之为 www.our-special-host.com),另一个用于其他所有站点。我们正在尝试对其进行配置,以便根据两个服务器指令中的哪个后端发生故障来显示不同的 502 错误页面。 我们的配置适用于 HTTP,但不适用于 HTTPS。如果我们关闭后端并访问 www.our-special-host.com,我们会收到 HTTP 和 HTTPS 的相应错误。但是,如果我们访问任何其他托管网站,我们会收到 HTTP 的正确错...

Admin

Apache proxypass 不起作用
proxypass

Apache proxypass 不起作用

我正在尝试重定向http://domain.com/fw我的防火墙是 192.168.xx 当使用 proxypass 时,我的日志中出现此错误,并且我的客户端出现 404: [error] [client x.x.x.x] File does not exist: /var/www/fw 这是我的虚拟主机文件: <VirtualHost *:80> Servername domain.com ProxyPreserveHost On ProxyPass /fw http://192.16...

Admin

ProxyPass 中从 http 到 https 的重定向错误
proxypass

ProxyPass 中从 http 到 https 的重定向错误

场景如下: 我有一个只能通过一个 URL 访问的 Linux 服务器(因为该服务器是 VPN 中的虚拟机): 网址:http://foo.bar.com 我有几个可以通过这种方式访问​​的网络应用程序: foo.bar.com/java_app => 安装在 tomcat 中的 java wep 应用程序 foo.bar.com/webpage => 安装在 apache 服务器中的网页 Linux 服务器有一个 apache2 服务器,它允许我使用几个配置文件来创建虚拟主机来解决上一个问题: 注意:myhost => l...

Admin

nginx 在 proxy_pass 中重写
proxypass

nginx 在 proxy_pass 中重写

我需要代理到不同的后端但使用相同的 URL,因此重写应该是这样的 URL: http://myservrer.com/server/monitoring1?(parameters) REWRITE TO: http://1.1.1.1/server/monitoring?(parameters) URL: http://myservrer.com/server/monitoring2?(parameters) REWRITE TO: http://2.2.2.2/server/monitoring?(parameters) 我当前的配置: ...

Admin

ProxyPass 在 httpd 上破坏编码
proxypass

ProxyPass 在 httpd 上破坏编码

我们正在将包含多字节字符数据的内容发送到 proxypass,当它到达我们的数据库时,它会将字符转换为 %uFFFD。 我该如何防止 httpd 像这样干扰编码? ...

Admin

2 个虚拟域:一个在端口 80,一个在端口 8080,怎么样?
proxypass

2 个虚拟域:一个在端口 80,一个在端口 8080,怎么样?

我一直在努力解决这个问题,基本上我想要的是这样的: 一个虚拟域在 80 上运行,另一个虚拟域从 80 运行到 8080 到目前为止我所做的是尝试使用 apache 的不同组合,但我得到的是所有虚拟域都指向端口 80 这是我的配置: <VirtualHost domain1.com:80> DocumentRoot /var/www/domain1 <Directory "/var/www/domain1"> allow from all Options +Indexes </Directory> ServerName...

Admin

Nginx 反向代理作为文件夹
proxypass

Nginx 反向代理作为文件夹

我正在尝试配置 Nginx 来代理子域名:dev.int.com 我希望 dev.int.com 代理到 IP:8080,dev.int.com/stash 代理到 IP:7990 这是我当前的配置文件 server { listen 80; server_name dev.int.com; access_log off; location / { proxy_pass http://IP:8080; proxy_set_header Host $host; proxy_set_header ...

Admin

根据不同的上游服务将 Nginx 默认 conf 拆分为单独的文件
proxypass

根据不同的上游服务将 Nginx 默认 conf 拆分为单独的文件

拥有一个正在运行的 Nginx 身份验证代理服务器,并且default.conf.template文件不断增长。 想要根据不同的上游服务将其拆分为多个文件。 ./templates/default.conf.template 文件: js_import scripts/auth.js;   upstream payment {     server ${PAYMENT_SVC_HOST}; }   upstream eligibility {     server ${ELIGI...

Admin

Nginx 位置代理传递问题
proxypass

Nginx 位置代理传递问题

我不是 nginx 专家,所以如果任何信息缺失或不完整,请见谅。 我有一个在 http://server-ip:3000/abc/xyz 下运行的网站。该网站还从 http://server-ip:3000/assets 加载一些资产,但也从 http://server-ip:3000/abc/xyz/data 加载一些资产 我现在想将 mydomain.tld 映射到 http://server-ip:3000/abc/xyz 因此我有这些位置: location / { proxy_pass http://upstream123/abc/xyz/;...

Admin

OHS 和 ProxyPass 以及 RewriteRule / RedirectMatch
proxypass

OHS 和 ProxyPass 以及 RewriteRule / RedirectMatch

我已经设置了这个虚拟主机, <VirtualHost *:443> ServerName test.domain.org DocumentRoot "/u02/config/www/tst-12c" RewriteEngine on RewriteCond %{REQUEST_METHOD} ^(OPTIONS) RewriteRule .* - [F] RewriteEngine On RedirectMatch ^/ui/#/project/(...

Admin

基于 Apache referrer 的反向代理路径重写
proxypass

基于 Apache referrer 的反向代理路径重写

我有一个虚拟主机,它是基于路径参数的反向代理“陸“ <VirtualHost *:443> ServerAlias some.example SSL... ProxyPass /xmg http://localhost:5553/ ProxyPassReverse /xmg http://localhost:5553/ <VirtualHost> 该应用程序不是我可以更改的,反向代理可以工作,基本 html 可以加载,但客户端html 不“知道”路径参数(陸),因此在没有“/xmg/”的情况下寻求其他资产(js,...)...

Admin

NGINX 代理传递到 Node.JS 服务器 SSL 握手失败
proxypass

NGINX 代理传递到 Node.JS 服务器 SSL 握手失败

我想使用 NGINX 设置一个到我的 express.js 服务器的反向代理,但是当连接到网站时我收到 Cloudflare525 SSL handshake failed错误。 这是我的 NGINX 配置文件 # Redirect IP queries server { listen 80; server_name MyIP; return 301 $scheme://example.com; } server { listen 443; server_name MyIP...

Admin

NGINX 域名配置文件,如何重定向 301 和 proxy_pass
proxypass

NGINX 域名配置文件,如何重定向 301 和 proxy_pass

我对 nginx 还很陌生,我正在尝试配置从 http 到 https 的重定向,并在同一个文件中将位置 a proxy_pass 设置为所需的 URL。 我的 domain.com 文件是这样的: server { listen 80; server_name my.example.com; return 301 https://$host$request_uri; } server { listen 443 ssl http2; server_name my.example.com; ssl ...

Admin