如何在 centOS 上停放域名

发布于 2024-10-29 20:11:11 字数 77 浏览 3 评论 0原文

我如何在没有任何 Cpanel(cPanel、plesk 或 ...)并使用 shh 的情况下在基于 CentOS 的 VPS 上停放域名?

how can i park a domain on CentOS based VPS without any Cpanel(cPanel,plesk or ...) and using shh?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

情域 2024-11-05 20:11:11

您可以编辑 httpd.conf 以及虚拟主机部分下的 ServerName 部分,您可以在其中添加您的域。如果你的 DNS 没有指向你的网络服务器,你也需要这样做(这是 cpanel 等的优点之一,它为你做这件事,但同时,让你想知道它做了什么)

类似

<VirtualHost *:80>
    ServerAdmin [email protected]
    DocumentRoot /www/docs/dummy-host.example.com
    ServerName dummy-host.example.com
    ServerName test.com
    ErrorLog logs/dummy-host.example.com-error_log
    CustomLog logs/dummy-host.example.com-access_log common
</VirtualHost>

You can edit httpd.conf and where it says the ServerName part under the virtual hosts section, you can add your domain there. If your DNS isnt pointing to your web server, you will need to do that too (this is one of the advantages of cpanel etc it does it for you but then at the same time, leaves you wondering what it did)

Something like

<VirtualHost *:80>
    ServerAdmin [email protected]
    DocumentRoot /www/docs/dummy-host.example.com
    ServerName dummy-host.example.com
    ServerName test.com
    ErrorLog logs/dummy-host.example.com-error_log
    CustomLog logs/dummy-host.example.com-access_log common
</VirtualHost>
空心↖ 2024-11-05 20:11:11

我假设您有 DNS(即 Godaddy 的,或者您通过 VPS 获得一个)。

编辑您的文件 /etc/httpd/conf/httpd.conf

在底部添加此内容(使用您的域名作为 ServerName,使用您的文件夹作为 DocumentRoot):

<VirtualHost *:80>
ServerAdmin root@localhost
DocumentRoot /home/examplecom/www/
ServerAlias example.com
ServerName www.example.com
ErrorLog logs/www.example.com-error_log
CustomLog logs/www.example.com-access_log common
    <Directory /home/examplecom/www/>
            Options FollowSymLinks
            AllowOverride All
    </Directory>
</VirtualHost>

目录是可选的,但这对我有用。

然后以“root”身份进入 SSH 并重置 Apache 服务器:

service httpd restart

I assume you have DNS (ie. Godaddy's, or you get one with your VPS).

Edit you file /etc/httpd/conf/httpd.conf

Add this at the bottom (use your domain name as ServerName and your folder as DocumentRoot):

<VirtualHost *:80>
ServerAdmin root@localhost
DocumentRoot /home/examplecom/www/
ServerAlias example.com
ServerName www.example.com
ErrorLog logs/www.example.com-error_log
CustomLog logs/www.example.com-access_log common
    <Directory /home/examplecom/www/>
            Options FollowSymLinks
            AllowOverride All
    </Directory>
</VirtualHost>

Directory is optional, but this works for me.

Than go to SSH as a "root" and reset Apache server:

service httpd restart
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文