ผลต่างระหว่างรุ่นของ "ฐานความรู้"
ไปยังการนำทาง
ไปยังการค้นหา
Cardcaptor (คุย | มีส่วนร่วม) |
Cardcaptor (คุย | มีส่วนร่วม) |
||
แถว 8: | แถว 8: | ||
Second, edit '''<tt>/etc/apache2/apache2.conf</tt>''' and add the following lines: | Second, edit '''<tt>/etc/apache2/apache2.conf</tt>''' and add the following lines: | ||
<IfModule mod_userdir.c> | <IfModule mod_userdir.c> | ||
− | + | UserDir public_html | |
</IfModule> | </IfModule> | ||
<Directory /home/*/public_html> | <Directory /home/*/public_html> | ||
− | + | AllowOverride FileInfo AuthConfig Limit | |
+ | Options Indexes SymLinksIfOwnerMatch IncludesNoExec | ||
</Directory> | </Directory> |
รุ่นแก้ไขเมื่อ 08:49, 16 มีนาคม 2551
Apache2 on Ubuntu
Enabling User Directory
This is how to set up Apache2 on Ubuntu so that, when hxxp://server/~username is accessed, the browser returns the content in /home/username/public_html.
First, user directory is now a mod in Ubuntu's apache2. If you have not installed the mod, then execute the following command:
sudo a2enmod userdir
Second, edit /etc/apache2/apache2.conf and add the following lines:
<IfModule mod_userdir.c> UserDir public_html </IfModule> <Directory /home/*/public_html> AllowOverride FileInfo AuthConfig Limit Options Indexes SymLinksIfOwnerMatch IncludesNoExec </Directory>