我是设置新网络服务器的新手。
我正在尝试使用在iMac上运行的Ubuntu 16.04来设置静态Web服务器。
我已经在设备中配置了静态IP,并且可以在本地访问它。但是,当我尝试从其他设备访问静态IP时,Web浏览器始终输出错误(无法访问站点)
这是我的接口文件
# interfaces(5) file used by ifup(8) and ifdown(8)
#CK: Delete this line and uncomment lines inside if not working.
#auto lo
#iface lo inet loopback
#CK: Delete this line and uncomment lines inside if not working.
#auto wlp2s0
#iface wlp2s0 inet static
auto enp3s0f0
iface enp3s0f0 inet static
address 121.58.252.189
netmask 255.255.255.240
gateway 121.58.252.177
dns-nameservers 121.58.250.195 202.58.250.195
如何设置端口来访问我的Web服务器,以便尝试转发路由器上的端口?
任何帮助将不胜感激!
更新: 我正在使用Apache2服务器