创建虚拟目录以通过浏览器URL myip / folder访问

时间:2018-10-04 12:44:32

标签: ubuntu server apache2 virtual-directory

我正在使用ubuntu服务器。

我有一个叫tif的用户和一个文件夹home/tif

我想在浏览器中使用链接http://myip/tif来调用该网站。

我正在为tif网站创建虚拟主机

sudo vim /etc/apache2/sites-available/tif.com.conf

接下来,我将这些行添加到此文件

<VirtualHost *:80>
  ServerAdmin info@tif.com
  ServerName tif.com
  ServerAlias www.tif.com
  DocumentRoot /home/tif/public_html/tif.com

  ErrorLog ${APACHE_LOG_DIR}/error.log
  CustomLog ${APACHE_LOG_DIR}/access.log combined

  <Directory /home/tif/public_html/tif.com>
    Options -Indexes
    AllowOverride All
  </Directory>
</VirtualHost>

我的下一步是:

激活新的虚拟主机

sudo a2ensite tif.com.conf

重新启动网络服务器以验证更改

sudo service apache2 restart

为tif.com网站创建文件夹

sudo mkdir /home/tif/public_html/tif.com

最后,我赋予该文件夹tif所有权

sudo chown -R tif:tif /home/tif/public_html/tif.com

但是,当我尝试访问http://myip/tif时,我会得到Internal Server Error

你能帮我吗?

0 个答案:

没有答案