-
I am new to FrankenPHP (and Caddie?) and I’m curious about how to change the default port from 80 (because it’s already in use on my remote development machine). I tried mapping another port, but it doesn’t seem to work:
I expected that I could then use (As a side question, why is an SSL port required? For instance, if I build a Dockerfile and run this inside a Kubernetes cluster, the SSL configuration is handled differently. I’d like to disable SSL entirely if I don’t need it.) |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 1 reply
-
You need to add a new parameter to tell frankenphp what ports it is listening on:
Or something like that. Basically, caddy is trying to redirect you to https:443 and it isn't there. |
Beta Was this translation helpful? Give feedback.
I had to fix SERVER_NAME, but you actually fixed my problem. Thank you so much @withinboredom