Streamlitを80番ポートで待ち受ける方法 2022年10月12日 / 1 min read View more blogs with the tag gcp , View more blogs with the tag python , View more blogs with the tag streamlit Table of Contents #はじめに #方法 #参考 はじめに Streamlitを80番ポートで待ち受ける方法です。 方法 iptables で 8501 番を 80 番に転送します。 Terminal window$ sudo iptables -t nat -A PREROUTING -p tcp --dport 80 -j REDIRECT --to-port 8501 参考 Streamlit で Python データ分析ダッシュボードをサクッと作って AWS にデプロイ - Qiita