Welcome! Log In Create A New Profile

Advanced

Re: Nginx as Reverse Proxy for multiple servers binded to proxy using UNIX sockets - how to reached in LAN

October 12, 2018 06:00PM
hallo,

mostly all question are answered

1. local DNS Server
using DHCP server of the router and run a DNS Server on the NAS, all
unersolved queries are solved in by the means of the routers WAN0's
DNS settings
2. debug logging
3. php isolation
create a pool per webage and rund them as seperate users by creating
a php.conf per pool
4. *nginx*
this is the only one remaining. How can I isolate the servers?

thx a lot

Stefan

On 07.10.2018 21:42, Stefan Müller wrote:
> good evening,
>
> in the past we were mailing each other on a daily base but now it is
> silent. Anything alright?
>
> On 03.10.2018 23:02, Stefan Müller wrote:
>>
>> thank you again for you quick answer  but I'm getting lost
>>
>>
>>> A typical nginx configuration has only one http {} block.
>>>
>>> You can look at some examples:
>> I'm aware of those and other examples. What confuses me that you say
>> that but also said in the email before that one:
>>
>>> If you put everything (both the user unix sockets and also the
>>> parent proxy server) under the same http{} block then it makes no
>>> sense since a single instance of nginx always runs under the same
>>> user (and beats the whole user/app isolation).
>>
>> so how must be the setup to the the whole user/app isolation
>>
>> nginx.pid  - master process
>> \_nginx.conf
>>   \_http{}  - master server
>>   \_http{}  - proxied/app servers
>>
>> or
>>
>> nginx.pid  - master process
>> \_nginx1.conf - master server
>>   \_http{}   - reverse proxy server
>> \_nginx2.conf - proxied servers
>>   \_http{}   - proxied/app servers
>>
>> or?
>>
>> If it is only one nginx.pid, how to I need to configure it to run
>> nginx1.conf and nginx2.conf?
>>
>>
>>
>>> Unless by "router" you mean the same Synology box you can't proxy
>>> unix sockets over TCP, they work only inside a single server/machine.
>> I mean my fibre router and I'm aware that unix sockets  work only
>> inside a single server/machine. I'll use it only to redirect to the
>> DNS Server what will run on the Synology box
>>
>>
>>> Also you don't need to forward multiple ports, just 80 and 443 (if
>>> ssl) and have name-based virtualhosts.
>>
>> you got me, I have mistaken that, it got to late last night
>>
>>
>> On 03.10.2018 02:09, Reinis Rozitis wrote:
>>>> so all goes in the same nginx.conf but in different http{} block or
>>>> do I need one nginx.conf  for each, the user unix sockets and also
>>>> the parent proxy server?
>>> A typical nginx configuration has only one http {} block.
>>>
>>> You can look at some examples:
>>> https://nginx.org/en/docs/http/request_processing.html
>>> https://nginx.org/en/docs/http/server_names.html
>>> https://www.nginx.com/resources/wiki/start/topics/examples/server_blocks/
>>>
>>>
>>>> You suggesting to setup virtualhosts what listen to a port whereto
>>>> traffic is forwarded from the router. I don't to have multiple
>>>> ports open at the router, so I would like to stick with UNIX
>>>> Sockets and proxy.
>>> Unless by "router" you mean the same Synology box you can't proxy
>>> unix sockets over TCP, they work only inside a single server/machine.
>>>
>>> Also you don't need to forward multiple ports, just 80 and 443 (if
>>> ssl) and have name-based virtualhosts.
>>>
>>> rr
>>>
>>> _______________________________________________
>>> nginx mailing list
>>> nginx@nginx.org
>>> http://mailman.nginx.org/mailman/listinfo/nginx
_______________________________________________
nginx mailing list
nginx@nginx.org
http://mailman.nginx.org/mailman/listinfo/nginx
Subject Author Posted

Nginx as Reverse Proxy for multiple servers binded to proxy using UNIX sockets - how to reached in LAN

PackElend September 21, 2018 02:36AM

Re: Nginx as Reverse Proxy for multiple servers binded to proxy using UNIX sockets - how to reached in LAN

PackElend September 26, 2018 06:02AM

RE: Nginx as Reverse Proxy for multiple servers binded to proxy using UNIX sockets - how to reached in LAN

Reinis Rozitis September 26, 2018 06:54AM

Re: Nginx as Reverse Proxy for multiple servers binded to proxy using UNIX sockets - how to reached in LAN

PackElend September 26, 2018 07:06AM

Re: Nginx as Reverse Proxy for multiple servers binded to proxy using UNIX sockets - how to reached in LAN

PackElend September 26, 2018 04:44PM

RE: Nginx as Reverse Proxy for multiple servers binded to proxy using UNIX sockets - how to reached in LAN

Reinis Rozitis September 27, 2018 06:16AM

Re: Nginx as Reverse Proxy for multiple servers binded to proxy using UNIX sockets - how to reached in LAN

PackElend September 28, 2018 01:02PM

RE: Nginx as Reverse Proxy for multiple servers binded to proxy using UNIX sockets - how to reached in LAN

Reinis Rozitis September 28, 2018 02:50PM

Re: Nginx as Reverse Proxy for multiple servers binded to proxy using UNIX sockets - how to reached in LAN

PackElend October 02, 2018 06:00AM

RE: Nginx as Reverse Proxy for multiple servers binded to proxy using UNIX sockets - how to reached in LAN

Reinis Rozitis October 02, 2018 12:44PM

Re: Nginx as Reverse Proxy for multiple servers binded to proxy using UNIX sockets - how to reached in LAN

PackElend October 02, 2018 02:34PM

RE: Nginx as Reverse Proxy for multiple servers binded to proxy using UNIX sockets - how to reached in LAN

Reinis Rozitis October 02, 2018 08:10PM

Re: Nginx as Reverse Proxy for multiple servers binded to proxy using UNIX sockets - how to reached in LAN

PackElend October 03, 2018 05:04PM

Re: Nginx as Reverse Proxy for multiple servers binded to proxy using UNIX sockets - how to reached in LAN

PackElend October 07, 2018 03:44PM

Re: Nginx as Reverse Proxy for multiple servers binded to proxy using UNIX sockets - how to reached in LAN

PackElend October 12, 2018 06:00PM

Re: Nginx as Reverse Proxy for multiple servers binded to proxy using UNIX sockets - how to reached in LAN

PackElend October 14, 2018 04:02PM

Re: Nginx as Reverse Proxy for multiple servers binded to proxy using UNIX sockets - how to reached in LAN

Francis Daly October 15, 2018 04:26PM

Re: Nginx as Reverse Proxy for multiple servers binded to proxy using UNIX sockets - how to reached in LAN

PackElend October 16, 2018 03:22AM

Re: Nginx as Reverse Proxy for multiple servers binded to proxy using UNIX sockets - how to reached in LAN

Francis Daly October 16, 2018 03:58AM

Re: Nginx as Reverse Proxy for multiple servers binded to proxy using UNIX sockets - how to reached in LAN

PackElend October 16, 2018 03:24PM

Re: Nginx as Reverse Proxy for multiple servers binded to proxy using UNIX sockets - how to reached in LAN

Francis Daly October 17, 2018 05:00PM

Re: Nginx as Reverse Proxy for multiple servers binded to proxy using UNIX sockets - how to reached in LAN

PackElend October 19, 2018 05:28PM

RE: Nginx as Reverse Proxy for multiple servers binded to proxy using UNIX sockets - how to reached in LAN

Reinis Rozitis October 22, 2018 04:52AM

Re: Nginx as Reverse Proxy for multiple servers binded to proxy using UNIX sockets - how to reached in LAN

Francis Daly October 23, 2018 02:02PM



Sorry, only registered users may post in this forum.

Click here to login

Online Users

Guests: 227
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