如何将网站设为私有?

发布于 2024-08-05 12:42:52 字数 105 浏览 2 评论 0原文

我只是在闲逛,学习网络开发的细节,我想将我的域名设为私有,直到我准备好展示它。

最好的方法是什么?

顺便说一句,我在 Debian 上有一个 Apache 服务器。

I'm just fooling around, learning the ins and outs of web development and I'd like to make my domain private until I'm ready to display it.

What's the best way to do this?

BTW, I have an Apache server on Debian.

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

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

发布评论

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

评论(5

握住我的手 2024-08-12 12:42:52

使用 .htaccess 文件创建用户/密码提示(请注意,这可能会被暴力破解,但会将公众拒之门外)

这里有一篇关于如何实现此操作的好文章: http://www.freewebmasterhelp.com/tutorials/htaccess/3

use an .htaccess file to create a user/pass prompt (be warned that this can be bruteforced but it'll keep the general public out)

here's a good article on how to go about implementing this: http://www.freewebmasterhelp.com/tutorials/htaccess/3

清旖 2024-08-12 12:42:52

您可以执行我能想到的两件事之一:

  1. 将其放在没有公共访问权限的内部网络上。
  2. 需要密码才能访问该网站,并且不要将其提供给任何人。

You can do one of two things that I can think of:

  1. Put it on a internal network that has no public access.
  2. Require a password to see the the site and don't give it to anyone.
我做我的改变 2024-08-12 12:42:52

其他替代方案:

  1. 设置防火墙规则,仅允许您的 IP 地址访问该站点。
  2. 使用您不告诉任何人的子域(这类似于密码和隐藏目录选项)。

Other alternatives:

  1. Set up a firewall rule to only allow your IP address(es) access to the site.
  2. Use a subdomain that you don't tell anybody about (this is similar to the password and hidden directory options).
你是我的挚爱i 2024-08-12 12:42:52

快速而简单的方法是告诉计算机的防火墙阻止端口 80(网络服务器使用的端口)。

此外,根据您的网络服务器,您可以将其配置为仅在本地主机上提供服务。

例如,在 Apache 中,我相信您可以编辑 httpd.conf 文件并添加 Listen 127.0.0.1:80

Quick and easy way would be to tell your computer's firewall to block port 80 (the port webservers use).

Also, depending on your webserver, you could configure it to only serve on localhost.

In Apache, for example, I believe you can edit the httpd.conf file and add Listen 127.0.0.1:80.

没有你我更好 2024-08-12 12:42:52

将其放在隐藏目录中,并使顶级站点为空页面。除非有人知道或猜测目录名称,否则没有人会看到您的实际站点。

Put it in a hidden directory and have the toplevel site be an empty page. Unless someone knows or guesses the directory name, no one will see your actual site.

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