我正在编写一个在我的服务器上本地运行的REST API(nodejs / express)(侦听端口3000);我已经设置了现有的Apache服务器,我想配置它以重新路由对节点实例的api调用。下面是我当前的Apache配置,使用ProxyPass:
<VirtualHost _default_:80>
DocumentRoot "/opt/bitnami/apache2/htdocs"
<Directory "/opt/bitnami/apache2/htdocs">
Options Indexes FollowSymLinks
AllowOverride All
<IfVersion < 2.3 >
Order allow,deny
Allow from all
</IfVersion>
<IfVersion >= 2.3 >
Require all granted
</IfVersion>
</Directory>
# Error Documents
ErrorDocument 503 /503.html
# Bitnami applications installed with a prefix URL (default)
Include "/opt/bitnami/apache2/conf/bitnami/bitnami-apps-prefix.conf"
ProxyPreserveHost On
ProxyPass /api http://localhost:3000
ProxyPassReverse /api http://localhost:3000
</VirtualHost>
我遇到的问题是PUT和POST请求在从Apache传递到Node时会转换为GET请求;我之前并不认为它是this issue,因为我根本没有向客户端发送重定向代码,但我没有其他更好的猜测。有没有人在看到这个问题之前//有办法强制请求在传递时保持其类型?