我正在为项目angular创建通用服务器端渲染。我完成了教程,并在端口4000上使用pm2启动了一个项目,现在我想创建一个虚拟主机并为该项目设置实例端口,但是我尝试阿帕奇
<VirtualHost *:80>
ServerAdmin webmaster@localhost
ServerName test.exemple.ma
ServerAlias exemple.ma
RewriteEngine on
ProxyPreserveHost On
RewriteRule ^/(.*) localhost:4000/$1 [P,L]
ProxyPassReverse / localhost:4000
</VirtualHost>