打开的是默认 Apache 页面,而不是我的网页

打开的是默认 Apache 页面,而不是我的网页

这是我的虚拟主机设置。每当我尝试加载我的网站时,它都会显示 Apache 默认页面,但刷新几次后它就会加载我的网站。我尝试搜索此问题,但每个人都在谈论虚拟主机配置。有人能找出我的虚拟主机配置中有什么问题吗?我还禁用了默认虚拟主机配置 000-default.com.conf。

    ServerAdmin [email protected]
    ServerName test.example.com
    ServerAlias www.test.example.com
    DocumentRoot /var/www/apps/staging/example
    ProxyRequests off
    <Proxy *>
            Order deny,allow
            Allow from all
    </Proxy>
    <Location />
            ProxyPass http://localhost:4204/
            ProxyPassReverse http://localhost:4204/
    </Location>

答案1

查看此文件夹: /var/www/apps/staging/example并确保删除 index.html

然后你可以简化代理传递如下:

ProxyPass / http://localhost:4204/
ProxyPassReverse / http://localhost:4204/

相关内容