在办公室 LAN 上设置 xampp 服务器

发布于 2024-10-16 10:28:10 字数 181 浏览 7 评论 0原文

我希望在小型办公室内使用 xampp 设置服务器。我当然会保护 xampp,但为了使我的 web 应用程序可供网络上的其他 4 台电脑使用,我是否只创建一个虚拟主机?有没有办法确保只能在局域网上访问Web应用程序?

当前设置包括 4 台计算机通过路由器共享互联网连接。我如何将其设置为一个局域网,我可以提供对我的网络应用程序的访问?

Im looking to set up a server using xampp within a small office. I will ofcourse secure xampp but in order to make my webapp available to the other 4 PCs on the network do i just create a virtual host? Is there a way to ensure that access to the webapp is only available on the lan?

The current setup includes 4 pcs sharing an internet connection via a router. How can i set this up as a lan which i can provide access to my webapp?

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

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

发布评论

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

评论(2

菊凝晚露 2024-10-23 10:28:11

使用 .htaccess 文件或在 httpd.conf 的 VirtualHost 标记中设置权限。您所要做的就是将其放入包含网页的文件夹内名为 .htaccess 的文件中:

order deny,allow

deny from all

allow from <ip you want>
allow from <ip you want>
allow from <ip you want>
etc...

Use an .htaccess file or set up permissions in the VirtualHost tags in httpd.conf. All you have to do is put this in a file named .htaccess inside of the folder holding your webpages:

order deny,allow

deny from all

allow from <ip you want>
allow from <ip you want>
allow from <ip you want>
etc...
燕归巢 2024-10-23 10:28:11

也许你可以尝试一下。

打开并确保 C:/xampp/apache/conf/httpd.conf

DocumentRoot “C:/xampp/htdocs”
Options Indexes FollowSymLinks
AllowOverride all
Order Deny,Allow
Allow from all

并打开 C:/xampp/apache/conf/extra/httpd-vhost.conf 添加 ..

NameVirtualHost name_site:80
 <VirtualHost name_site:80>
 DocumentRoot C:/xampp/htdocs/folder_site/
 ServerAdmin [email protected]
 ServerName xxx.xxx.xxx.xxx
 </VirtualHost>

注意:xxx.xxx.xxx.xxx 是 xampp 计算机 ip 。
这适用于 win 7。

如果仍然不起作用。尝试禁用 Windows 防火墙。

Perhaps you can try.

open and make sure C:/xampp/apache/conf/httpd.conf

DocumentRoot “C:/xampp/htdocs”
Options Indexes FollowSymLinks
AllowOverride all
Order Deny,Allow
Allow from all

and open C:/xampp/apache/conf/extra/httpd-vhost.conf add ..

NameVirtualHost name_site:80
 <VirtualHost name_site:80>
 DocumentRoot C:/xampp/htdocs/folder_site/
 ServerAdmin [email protected]
 ServerName xxx.xxx.xxx.xxx
 </VirtualHost>

note: xxx.xxx.xxx.xxx is xampp computer ip.
This work on win 7.

If still dosn't work. Try to disable youe windows firewall.

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