[Q] Multi tenancy (multiple sites/projects) #757
-
Hi guys, Is there any way to use a single instance of Roadrunner on a server with multiple Laravel projects (sites)? Each one will have a different domain / SSL cert. Perhaps in conjunction with an NGINX reverse proxy or something? If not, I'd love to see a feature like this. |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 3 replies
-
Hey @binaryfire. Unfortunately, this is not possible at the time. I don't think, that this is even possible to implement via 1 RR instance. Because it can be easily solved by running multiply RR instances (bash script). Only 1 thing you'll need to maintain - RR configuration files. #/usr/bin/bash
while true; ./rr serve -c $1; sleep 1; end Just replace |
Beta Was this translation helpful? Give feedback.
Hey @binaryfire. Unfortunately, this is not possible at the time. I don't think, that this is even possible to implement via 1 RR instance. Because it can be easily solved by running multiply RR instances (bash script). Only 1 thing you'll need to maintain - RR configuration files.
Just replace
true
with the number of needed instances and provide paths to the configuration files.