基于 Apache URL 的代理重定向

基于 Apache URL 的代理重定向

我最近在我的服务器上安装了 PLEX 媒体服务器,但是在将其隐藏在 Apache 代理后面时遇到了一些困难......

我发现vhost 配置允许基于子域的 PLEX 访问(例如:plex.example.com)。我的问题是我不想创建特定的子域,因此我更愿意进行(透明的)基于 URL 的重定向,如下所示:

我的 PLEX 服务器 URL:http://example.com:32400/web/index.html

我想要的是 :https://example.com/plex/index.html

我尝试了以下 vhost 配置:

<VirtualHost *:443>
ServerName example.com

ProxyRequests off
ProxyPreserveHost On
ProxyPassMatch ^/plex/(.*)$ http://localhost:32400/web/$1
ProxyPassReverse /web http://localhost:32400/web

</VirtualHost>

但它不能正常工作。

相关内容