如何公开我的新网站?

时间:2017-04-30 08:04:52

标签: apache web webserver

我已经注册了一个新域并设置了名称服务器,A记录。我还在apache2目录下的启用站点和站点可用的目录中添加了conf文件。

将传入流量引导到相应网站的下一步是什么?

<VirtualHost *:80>
ServerAdmin admin@x.com
ServerName x.com
ServerAlias www.x.com

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

1 个答案:

答案 0 :(得分:1)

您似乎错过了虚拟主机文件中的文档根条目。这是您将流量重定向到您网站的下一步。

将其置于服务器别名

DocumentRoot /var/www/x.com/public_html

然后将您的网站放在/var/www/x.com/public_html文件夹中。请务必修改访问权限,以便任何人都可以查看public_html内容

查看此链接了解更多详情。

https://www.digitalocean.com/community/tutorials/how-to-set-up-apache-virtual-hosts-on-ubuntu-14-04-lts