我有一个新的 CentOS 安装,我正在将其设置为新的本地开发机器。我的文件在 NAS 上,我已使用 mount 命令在“/var/www/websites/”上设置对 NAS 的访问权限。
我可以“ls /var/www/websites/”并查看文件列表。但是当我将其放入 Apache 配置文件中时,我收到消息“警告:DocumentRoot [/var/www/websites/website.co.uk/htdocs] 不存在”
我的配置文件设置如下:
<VirtualHost *:80>
ServerName dev.website.co.uk
ServerAlias *.example.org
ServerAdmin [email protected]
ErrorLog /var/log/httpd/error,log
CustomLog /var/log/httpd/example.log combined
DocumentRoot /var/www/websites/website.co.uk/htdocs
<Directory "/var/www/websites/website.co.uk/htdocs">
Order allow,deny
Allow from all
</Directory>
</VirtualHost>
有人可以帮忙吗?
答案1
我的解决方案 - 安装 Webmin 并使用它设置 Apache!我还不知道为什么,但它现在起作用了……