公共 Apache2 服务器
我想知道如何公开我的 apache2 服务器? 我的意思是,我有一个静态 IP,并且知道该 IP 的人可以从外部世界访问我的网站。 我已经安装了apache2。我从 http://localhost 测试它,我的意思是它的工作原理。
顺便说一句,我的操作系统是 ubuntu。
谢谢
I wonder how to make my apache2 server public?
I mean, I have a static ip and someone who knew that ip can access my website from out-world.
I already install apache2. I test it from http://localhost, I mean its working.
My OS is ubuntu by the way.
Thanks
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
验证您的 Apache 配置是否侦听所有 IP 上的连接,或至少侦听外部可见的 IP 地址:http://httpd.apache.org/docs/2.2/mod/mpm_common.html#listen
您可以使用命令
netstat -anp | 来验证这一点。 grep apache
(也许:80
会比apache
更容易)。Verify that your Apache configuration has it listening for connections on all IPs, or at least the externally-visible IP address: http://httpd.apache.org/docs/2.2/mod/mpm_common.html#listen
You can verify this by using the command
netstat -anp | grep apache
(maybe:80
would be easier thanapache
).