如何在Alias文件夹上运行Next.js

时间:2018-12-10 12:07:39

标签: apache webpack next.js

我有一个运行两个应用程序的Apache服务器:

在WordPress(PHP)上运行的网站,网址为: http://example.com

运行Express的Next.js应用程序在: http://example.com/tools

工具应用程序位于其他文件夹中: / var / www / html / tool / current

我使用Apache vhost来使example.com/tools运行该应用程序,这是我的vhost:

good_file.txt

这会导致APP的路由出现错误,因为应用程序的客户端未加载,并且出现了一些错误:

<VirtualHost *:80>
   ServerAdmin webmaster@example.com
   DocumentRoot "/var/www/html/example/current"
   ServerName www.example
   #Alias /tools
   /var/www/html/example/current/
   #ProxyPass /tools http://www.example.com.br
</VirtualHost>

<Location /tools>
            ProxyPass http://192.40.122.211:3000/
            ProxyPassReverse http://192.40.122.211:3000/
</Location>

有人对我可能做什么有任何想法吗?

0 个答案:

没有答案