Access to Wordpress site

I’ve installed Wordpress on OpenSUSE Leap 15.6 using Podman.
(The machine is also acting as Firewall).

Now, how should I configure the Firewall to allow external traffic to my Wordpress-site? The site is running inside a container that belongs to a Pod connected to a separate network.
(Masquerading of internal networks is turned on on the firewall)

Should I on the Firewall configure a forward of http & https traffic that reaches the external interface to my Podman network or what?

I can from the internal network manage my Wordpress setting by surfing to http://ip-address:8080/wp-admin.

Any ideas on what I should do?

Kind regards

Henrik

With the pod, you forward the port externally to the internal port - -p <external_port>:<internal_port> in the podman run command (similar to how you’d do this with Docker).

Then you make sure that the external port is open in your firewall, and that your router redirects traffic from the Internet to the internal port.

You will also need to set up firewall rules on your router to forward connections from the Internet to the internal host.

This topic was automatically closed 30 days after the last reply. New replies are no longer allowed.