虚拟主机设置后权限发生改变

虚拟主机设置后权限发生改变

我在 Ubuntu 20 上运行 php 项目,为其配置 apacher vhosts 后,文件夹及其内容的权限已更改且变得不可写,我该如何防止这种情况再次发生;我正在使用的方法示例

$ sudo cp /etc/apache2/sites-available/000-default.conf /etc/apache2/sites-available/webserver1.com.conf
$ sudo nano /etc/apache2/sites-available/webserver1.com.conf
<VirtualHost *:80>
   ServerAdmin [email protected]
   ServerName webserver1.com
   ServerAlias www.webserver1.com
   DocumentRoot /var/www/webserver1.com/public_html
   ErrorLog ${APACHE_LOG_DIR}/error.log
   CustomLog ${APACHE_LOG_DIR}/access.log combined
</VirtualHost>

相关内容