📌  相关文章
📜  在没有端口的情况下运行应用程序 - 无论代码示例

📅  最后修改于: 2022-03-11 14:55:21.603000             🧑  作者: Mango

代码示例1
#!/bin/sh -e
#
# rc.local into the etc folder
#
# This script is executed at the end of each multiuser runlevel.
# Make sure that the script will "exit 0" on success or any other
# value on error.
#
# In order to enable or disable this script just change the execution
# bits.
#
# By default this script does nothing.
iptables -t nat -A PREROUTING -p tcp --dport 80 -j REDIRECT --to-port 8069
exit 0