Jump to content

Edit History

Progressify

Progressify


markdown to forum visual tag

I hope you were able to resolve your issue. Here are some possible solutions you can try.

When using Traefik, keep in mind the following:

Bad Gateway: This usually means the container is not correctly connected to the Traefik network, or the container has multiple networks and Traefik cannot determine which one to use. In this case, simply add the following label:

- "traefik.docker.network=<your-traefik-network-name>"

 

404: This usually means the container is stopped or has been killed. If the container is running, you may need to add the load balancer label:

- "traefik.http.services.<your-traefik-service-name>.loadbalancer.server.port=<port-where-apache-is-running>"

For example:

- "traefik.http.services.mynewprestashopsite.loadbalancer.server.port=8000"

 

Progressify

Progressify

I hope you were able to resolve your issue. Here are some possible solutions you can try.

When using Traefik, keep in mind the following:

`Bad Gateway`: This usually means the container is not correctly connected to the Traefik network, or the container has multiple networks and Traefik cannot determine which one to use. In this case, simply add the following label:

```
- "traefik.docker.network=<your-traefik-network-name>"
```

`404`: This usually means the container is stopped or has been killed. If the container is running, you may need to add the load balancer label:

```
- "traefik.http.services.<your-traefik-service-name>.loadbalancer.server.port=<port-where-apache-is-running>"
```

For example:

```
- "traefik.http.services.mynewprestashopsite.loadbalancer.server.port=8000"
```

×
×
  • Create New...