Serving website with Apache, with Nginx as interface?
Alex Hall
ahall at autodist.com
Sat May 14 11:32:38 UTC 2016
> On May 14, 2016, at 05:19, Francis Daly <francis at daoine.org> wrote:
>
> On Fri, May 13, 2016 at 01:24:57PM -0400, Alex Hall wrote:
>
> Hi there,
>
>> It's as though the proxy weren't working properly at all.
>> I have it set up in a location:
>>
>> upstream apache2Redirect {
>> server 127.0.0.1:8080;
>> }
>>
>> location / {
>> proxy_set_header Host $host;
>> proxy_pass http://apache2Redirect;
>> }
>>
>> My understanding is that the / will match everything, from /index.html to
>> /images/small/235.jpg. Is that not the case? Do I need to do something to
>> my location block, by chance?
>
> If the "location" you show above is the entire content of your server{}
> block, then all requests that get to nginx should be handled in it.
>
> If you have more config that you are not showing, then possibly that
> extra config is interfering with what you want to do.
>
Sorry I should have said. Yes, that's all there is to my config file. I wanted every request to go to Apache, including any subdirectories.
>
> The best chance of someone being able to help, is if you can include
> very specific details about what you do, what you see, and what you
> expect to see instead.
The problem is that the error I'm seeing is in OSTicket. All I can say is that the OST forums aren't any help, that I don't see the error on Apache under Windows, and that I do see it under this configuration. It's the exact same error I saw when serving OST with Nginx directly, which is why I think the proxy isn't working correctly. Plus, I don't see the access to the OST pages in the Apache access log after 11:14, despite trying it all day yesterday. Nginx registers them, but not Apache. Yet, if I stop Apache, I get a 502 when trying to pull up OST.
>
> If you use the "curl" command-line tool instead of a normal browser, you
> can make one request and see the full response. If you know what response
> you expect, you can compare it to the response that you actually get.
>
>
> curl -v http://ngninx-server/OSTicket/
>
> (or whatever url you have set things up at).
>
> Without knowing what you do want to see, I'm pretty sure that you do
> not want to see "127.0.0.1" or "8080" anywhere in the response.
Curl is a good idea. I'll try that Monday when I'm back in the office (this is an intranet site, so I can't test it from home, though I can ssh into the server).
>
> Good luck with it,
>
> f
> --
> Francis Daly francis at daoine.org
>
> _______________________________________________
> nginx mailing list
> nginx at nginx.org
> http://mailman.nginx.org/mailman/listinfo/nginx
More information about the nginx
mailing list