-
So, what's the problem:
It works with my system, it works with my clear-code php and apache BUT somehow it doesn't work with RoadRunner All configs of dnsmasq and php are the same. Where can I set roadrunner DNS resolver to DNSMasq and not any other NS Service? |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 5 replies
-
Hey @PakToPack 👋🏻 |
Beta Was this translation helpful? Give feedback.
RR doesn't have its own dns settings at all. Since dnsmasq is not getting any requests - check your application code.
Note that RR does not kill the workers when the request is finished. You should not store state between requests.
You can use
max_jobs: 1
option to emulatenginx
/apach
behavior (destroy worker after the request is done).