• 0 Posts
  • 355 Comments
Joined 1 year ago
cake
Cake day: February 15th, 2025

help-circle











  • I’ve been running it for 2 years.

    The swarm support integration is first class, but there is not much to do in the gui, you can add nodes and see basic info about them and thats it basically.

    Most of the stuff happens in the compose files where you can define how many copies of a container you run and what nodes you want to restrict them to. etc.

    I’m not sure about the moving features tbh. It should move them automatically when a node is down. In my setup I don’t use that at all, all my containers are pinned to specific nodes by feature flags (one node has lots of hdd storage, another has more ram, another has a gpu).

    You can see the container logs, but you have to select “swarm” in a dropdown when the container is not on your master node.

    And also when deploying a new app you have to select “Compose” and then in a further dropdown “Swarm”.









  • Sounds good.

    Hmm next you probably should confirm ports 80 and 443 are actually reachable from the internet.

    Use an online port checker like https://canyouseeme.org/

    After that you should check your apache config like somebody else already suggested. I haven’t used apache in a while but if I remember correctly:

    Ensure it says: Listen 80 NOT: Listen 127.0.0.1:80

    (and same with 443)

    Also check your VirtualHost — it should look something like:

    <VirtualHost *:80>
        ServerName yourdomain.com
        DocumentRoot /var/www/wordpress
        # ... other settings
    </VirtualHost>
    

    (and same with 443)