apache, nginx mix
thank you.
4 Replies
1. Run them on different ports. For example, Apache will run on
2. Run them on different IP addresses. You can buy another IP address for $1/month.
3. Put nginx in front of Apache, and proxy the requests to Apache.
I was just reading about using nginx and reverse proxy similar to your suggestion on number 3.
I am thinking of stopping apache2 and trying out nginx stand alone. I was comparing the instructions on installing ruby with passenger nginx to LEMP and web server nginx set up. Over at LEMP, the nginx from source instructions seems a bit different. Is there anything crucial over at LEMP or web server set up that I should add to ruby passenger nginx installation?
these arent listed on the ruby passenger nginx set up…
like third party modules
./configure --prefix=/opt/nginx --user=nginx --group=nginx --with-httpsslmodule
make
make install
and it doesnt have user, group set up
adduser --system --no-create-home --disabled-login --disabled-password --group nginx
thank you