bug管理工具mantis
各位高手大虾们帮帮忙,我用的是easyphp+mantis,已经能通过http://localhost/mantis访问了,我想现在让自己当作服务器,让大家能在局域网访问我,我应该怎样修改?谢谢,是该apache 的conf吗?还是.....host用不用改?
参考答案:右键点击电脑右下角的Easyphp图标,选择Configuration,然后选择Apache,打开Httpd.conf文件。
定位到此段落:
# Listen: Allows you to bind Apache to specific IP addresses and/or
# ports, in addition to the default. See also the <VirtualHost>
# directive.
#
#Listen 3000
#Listen 12.34.56.78:80
Listen 127.0.0.1:80
将最后一行的Listen 127.0.0.1:80 修改为:
Listen IP:80,就可以了
IP为你本机在局域网的IP地址,在命令行里用IPconfig可以看到。