我正在使用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
。
你能帮我吗?