Home > Backend Development > PHP Tutorial > linux上安装了lamp,默认的文档目录是/var/www/html(属于root),为了安全和方便,如何控制文件权限?

linux上安装了lamp,默认的文档目录是/var/www/html(属于root),为了安全和方便,如何控制文件权限?

WBOY
Release: 2016-06-06 20:40:30
Original
1480 people have browsed it

另外,我想在www目录下建一个upload的目录让用户上传文件。因为/var/www底下默认的都是属于root的,为了方便,我是否可以用chmod 777来改变它(安全角度分析)? 不知道现在主流的做法是什么。

回复内容:

另外,我想在www目录下建一个upload的目录让用户上传文件。因为/var/www底下默认的都是属于root的,为了方便,我是否可以用chmod 777来改变它(安全角度分析)? 不知道现在主流的做法是什么。

见 https://jysperm.me/2014/09/1830/

apache就给chown -R apache:apache www

站点根目录不要使用root,你的Apache如果是以例如:www用户运行的话,那就讲站点根目录设置为www用户和组的方式运行,下面的目录和文件,默认是文件644 目录755

chown -R apache:apache www

Related labels:
source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template