Như các bạn đã biết mặc định Apache sẽ để đường dẫn thư mục chứa code là /var/ww/html. Trong tut này mình sẽ hướng dẫn các bạn bật UserDir trên Apache và chuyển đường dẫn về /home/domain/public_html.
– Các bạn thay example.com bằng domain của các bạn
* Chú ý: Ở bước tạo thư mục thư mục chứa code và file logs (public_html, logs) không nhất thiết phải để là example.com, các bạn có thể đặt tên thư mục là gì cũng được
vd: /home/abcxyz/public_html, /home/abcxyz/logs
– Đường dẫn trong file virtualhost phải giống với đường dẫn các bạn đã tạo, cụ thể ở các dòng:
ví dụ: Mình tạo thư mục chứa code và file logs có path là: /home/vpstut/public_html, /home/vpstut/logs và domain của mình là vpstut.info thì file virtualhost của mình sẽ là
Finding and Processing Files on Linux
locate command
Locate - Find Files by Name
Locate reads one or more databases prepared by updatedb command.
Options
/----------------------------------------------------------------------------------------------…Read More
Deadly Linux Commands
If you are new to Linux, chances are you will meet a stupid person perhaps in a forum or chat room that can trick you into using commands that will harm your files or even your entire operating system.
Don’t run anything wi…Read More
Generate Random Password on Linux
Generate AlphaNumeric Random Password
[mitesh@Matrix ~]$ cat /dev/urandom | tr -dc 'a-zA-Z0-9' | fold -w 15 | head -n10
k8eViiHzPvquY18
5niBD7oMDNwr9aF
cdqas4okZ9L9jLx
0C8X3s2g6I1RmKc
6Gafnp9ttaRmlHX
FrgSa94hNwoEibR
zipj2iW…Read More
Browsing the Filesystem on Linux
Linux File Hierarchy Concepts
Files and Directories are organized into a single rooted inverted tree structure, including distinct physical volumes such as Floppy Disks, CD-ROMs and Multiple Hard Drives.
Filesystem begins a…Read More
How to Fix Webroot Permissions
Change Ownership
[mitesh@Matrix ~]$ chown -R www-data:www-data /var/www
NOTE!: The www-data user is used by nginx and php5-fpm. If you are running php as a different user then change ownership as per that.
Rese…Read More
0 comments:
Post a Comment