师哥 发表于 2021-10-11 09:42:17

apache反向代理 500

本帖最后由 师哥 于 2021-10-11 09:45 编辑

Internal Server ErrorThe server encountered an internal error or misconfiguration and was unable to complete your request.Please contact the server administrator at you@example.com to inform them of the time this error occurred, and the actions you performed just before this error.More information about this error may be available in the server error log.Apache Server at synology.shige.me Port 80

<VirtualHost *:80>ServerName synology.shige.me
ProxyRequests off
<Proxy *>
   Order allow,deny
    Allow from all
</Proxy>
ProxyPass / https://cloud.shige.me:808/
ProxyPassReverse / https://cloud.shige.me:808/
</VirtualHost>

目的是想访问用户访问 http://synology.shige.me ,apache代理访问 https://cloud.shige.me:808/
网上的方法能试了都试了,模块也都去掉注释了。用的 1.7版本 apache2.4


licess 发表于 2021-10-11 12:52:08

有可能是需要添加 SSLProxyEngine on 上这一行吧,你得按错误信息提供apache的错误日志才能确定
lamp还是lnmpa?lnmpa的话nginx效率更高
mod_proxy开头的模块都去掉注释了没?重启了没?

师哥 发表于 2021-10-12 08:37:56

licess 发表于 2021-10-11 12:52
有可能是需要添加 SSLProxyEngine on 上这一行吧,你得按错误信息提供apache的错误日志才能确定
lamp还是ln ...

太感谢大佬了,加了 SSLProxyEngine on 就好了 :kiss:
我用的lamp
页: [1]
查看完整版本: apache反向代理 500