Closed robsdedude closed 1 year ago
Thanks for this report @robsdedude.
That being said, are you sure Traefik supports FastCGI (FPM) protocol?
As per https://github.com/traefik/traefik/issues/9521, I don't believe so.
Thus, none of the fpm
variants are supported by Traefik, at least for now.
You are right. I thought fpm was a web server of sorts. I'm just incredibly confused by the fact that it used to work :confused:
:shrug: sorry for the noise
Code of Conduct
Submission validity
Self troubleshooting
Version
1.9.2
Description
I have a docker compose file that spins up
yourls:1.9-fpm-alpine
andmysql:8.0
. The web service is then proxied through traefik. I diddocker compose -f <path-to-my-compose-yaml> pull
and all I got afterwards was "Bad gateway".So I exposed the http port of the yourls container directly and
curl
ed it:There were no errors in the logs.
Sending requests didn't make new entries appear.
Switching the image to
yourls:1.9
(using apache) it started just working fine.Before I figured this out, I played around a lot with the
php.ini
and/usr/local/etc/
config files to get some errors to appear in the logs, but without success.Expectation
No response
Reproduction steps
Here is my docker compose file to reproduce the issue.
Note, I have a
.env
file with the passwordsand I redacted my domain. All the traefik related entries are likely irrelevant, but for completeness, I included them. You can observe the problem without traefik, by just adding
to the
yourls
service.Context
No response