-
Hello.
Again, traffic is allowed no problem when running other apps on that same port (e.g. Notice that the "Network" interface lists the local IP 127.0.0.1 instead of the actual remotely accessible IP address. If I run this simple Python script on the same server, it properly prints out the remotely accessible IP address:
|
Beta Was this translation helpful? Give feedback.
Replies: 1 comment
-
Add If you really want to enable a single trame instance to be your server, you should add a |
Beta Was this translation helpful? Give feedback.
Add
--host 0.0.0.0
to expose the serve to all network interfaces.Also for real deployment, you should embed your trame app inside docker to enable multi-user separation.
If you really want to enable a single trame instance to be your server, you should add a
--timeout 0
to prevent it from shutting down automatically after 300 seconds.