我可以根据我在/ etc / httpd / sites-enabled文件夹中拥有的虚拟别名片段找到某些文档的文档根吗?
#
# Apogee LN2
#
<VirtualHost *:80>
ServerName whatiwant.example.com
ServerAlias whatiwant
# DocumentRoot /rproxy/nowhere
ProxyRequests Off
ProxyPass / http://whatiwant-1.example.com/
ProxyPassReverse / http://whatiwant-1.example.com/
<Proxy *>
Order deny,allow
Deny from all
Allow from \
10. 192.55.555. \
.pvtn.net .pvtnetworks.net .doit.edu .something.net \
others
</Proxy>
</VirtualHost>
试图找出其中用于whatiwant生命的代码,悲伤地看到下面DocumentRoot的被注释,使得是一个无意义的线。我还能在哪里看到这段代码?或者,当我真正拥有的只是要删除的URL时,如何查找whatiwant.example.com指向磁盘上的位置?