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>