我刚刚开始使用meteor,我已将示例todos应用程序部署到运行apache2 webserver的服务器上。
meteor app通过domain.com:3000正常运行但是当我使用URL domain.com/todos时页面是空白的但是查看页面源显示那里有代码。
所以我希望我已经搞砸了反向代理,但无法理解。请你能帮帮我吗?
我在apache2 / sites-available中的domain.conf文件如下所示:
<VirtualHost mydomain.com:80>
ServerAdmin mark@mydomain.com
ServerName monkl
ServerAlias www.mydomain.dom
<Directory />
Options FollowSymLinks
AllowOverride None
Require all granted
</Directory>
ProxyRequests Off
<Proxy *>
Order deny,allow
Allow from all
</Proxy>
<Location /todos>
ProxyPass http://127.0.0.1:3000
ProxyPassReverse http://127.0.0.1:3000
</Location>
我的服务器是Ubuntu 14.04(可靠),我正在使用apache2 webserver,meteor 1.3
非常感谢,马克