Welcome! Log In Create A New Profile

Advanced

Re: how to configure nginx with running apache ?

mex
April 17, 2014 07:04AM
> Hence I have to place nginx before apache without disturbing the
> setup.
>

works seemlessly and speeds up your apache, when using proxy_cache, assuming your
apache listens on 8080


server {
listen 80;
server_name myhost;
location / {
root /path/to/myapp/public;
proxy_set_header X-Forwarded-Host $host;
proxy_set_header X-Forwarded-Server $host;
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
proxy_pass http://apache:8080;
}
}

from this basic snippet you can go on and test different setups
with additional nginx-virtualhosts before making changes work in your prod-environment


server {
# this is for testing new setups
listen 81;
server_name myhost;
location / {
root /path/to/myapp/public;
proxy_cache cache;
proxy_set_header X-Forwarded-Host $host;
proxy_set_header X-Forwarded-Server $host;
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
proxy_pass http://apache:8080;
}
}
Subject Author Posted

how to configure nginx with running apache ?

Joydeep Bakshi April 17, 2014 04:10AM

Re: how to configure nginx with running apache ?

mex April 17, 2014 05:57AM

Re: how to configure nginx with running apache ?

GreenGecko April 17, 2014 06:36AM

Re: how to configure nginx with running apache ?

mex April 17, 2014 06:50AM

Re: how to configure nginx with running apache ?

Steve Wilson April 17, 2014 06:58AM

Re: how to configure nginx with running apache ?

Joydeep Bakshi April 17, 2014 06:58AM

Re: how to configure nginx with running apache ?

mex April 17, 2014 07:04AM

Re: how to configure nginx with running apache ?

Joydeep Bakshi April 17, 2014 08:50AM



Sorry, only registered users may post in this forum.

Click here to login

Online Users

Guests: 143
Record Number of Users: 8 on April 13, 2023
Record Number of Guests: 421 on December 02, 2018
Powered by nginx      Powered by FreeBSD      PHP Powered      Powered by MariaDB      ipv6 ready