Transmission Web UI 和错误 405

Transmission Web UI 和错误 405

我已经transmission-daemon在端口上监听9091。这是由正在使用的virtualhost站点代理的。apache2ssl

ERROR 409由于/代理地址的最后一部分缺少 a ,我设法通过了臭名昭著的。但现在我面临的是ERROR 405: Method now Allowed

这是virtualhost我正在使用的配置文件:

<IfModule mod_ssl.c>
<VirtualHost *:443>
    ServerName foo.bar.zaz
    ServerAlias bar.zaz
    ErrorLog /var/www/bar.zaz/error.log
    CustomLog /var/www/bar.zaz/requests.log combined
    ProxyPass / http://127.0.0.1:9091/web/
    ProxyPassReverse / http://127.0.0.1:9091/web/

    SSLCertificateFile /etc/letsencrypt/live/bar.zaz/cert.pem
    SSLCertificateKeyFile /etc/letsencrypt/live/bar.zaz/privkey.pem
    Include /etc/letsencrypt/options-ssl-apache.conf
    SSLCertificateChainFile /etc/letsencrypt/live/bar.zaz/chain.pem
</VirtualHost>
</IfModule>

Web UI 加载正常,然后我收到错误,将我锁定并阻止我使用它。

知道我遗漏了什么吗?

相关内容