我已经安装了 apache xampp 并且都在内部工作。然后我将端口 8080 和路由器上的 IP 地址重定向到服务器的内部 IP 地址。我可以看到 nat 发生并且在服务器上我可以看到 httpd.exe 通过但无法从外部世界连接。
Listen 192.168.0.47:8080
ServerAdmin postmaster@192.168.0.47
ServerName 192.168.0.47:8080
DocumentRoot "/xampp/htdocs"
<Directory />
AllowOverride none
Require all granted
</Directory>
<Directory "/xampp/htdocs">
Options Indexes FollowSymLinks Includes ExecCGI
AllowOverride All
Require all granted
</Directory>
<Files ".ht*">
Require all denied
</Files>
container, that host's errors will be logged there and not here.
ErrorLog "logs/error.log"
CustomLog "logs/access.log" combined
</IfModule>
<IfModule alias_module>
ScriptAlias /cgi-bin/ "/xampp/cgi-bin/"
</IfModule>
<IfModule cgid_module>
</IfModule>
<Directory "/xampp/cgi-bin">
AllowOverride None
Options None
Require all granted
</Directory>