Hi Francis, thanks you!
Em ter., 15 de fev. de 2022 às 13:49, Francis Daly
escreveu:
> On Tue, Feb 15, 2022 at 12:31:06PM -0300, Carlos Renato wrote:
>
> Hi there,
>
> > This what I get when trying to start NGINX with the simplified file.
> >
> > [root@proxy conf.d]# cat webgateway.conf
> > upst
On Tue, Feb 15, 2022 at 12:31:06PM -0300, Carlos Renato wrote:
Hi there,
> This what I get when trying to start NGINX with the simplified file.
>
> [root@proxy conf.d]# cat webgateway.conf
> upstream webgateway {
>server 192.168.239.151:9090;
>server 192.168.239.152:9090;
> }
>
> server
Hi, Josef
This what I get when trying to start NGINX with the simplified file.
[root@proxy conf.d]# cat webgateway.conf
upstream webgateway {
server 192.168.239.151:9090;
server 192.168.239.152:9090;
}
server {
listen 9191;
proxy_pass webgateway;
}
}
[root@proxy conf.d]# nginx -t
n
Seems to me, that you are not using stream{} module as noted by
Francis, and you are still putting server block to http{}. If not,
post nginx -T
J.
On Tue, Feb 15, 2022 at 4:17 PM Carlos Renato wrote:
>
> Hi Francis,
> Thanks for the reply and willingness to help me.
>
> [root@proxy conf.d]# cat
Hi Francis,
Thanks for the reply and willingness to help me.
[root@proxy conf.d]# cat teste.conf
upstream webgateway {
server 192.168.239.151:9090;
server 192.168.239.152:9090;
}
server {
listen 9191;
proxy_pass webgateway;
}
[root@proxy conf.d]#
I cannot start NGINX.
Feb 15 01:
On Tue, Feb 15, 2022 at 10:29:50AM -0300, Carlos Renato wrote:
Hi there,
> My file is like this.
Untested by me, but I have edited this to now resemble what I think
you want...
> upstream webgateway {
>server 192.168.239.151:9090;
>server 192.168.239.152:9090;
> }
>
> server {
>lis
Hi Francis, Thanks for the reply.
My file is like this.
upstream webgateway {
server 192.168.239.151:9090;
server 192.168.239.152:9090;
keepalive 10;
}
server {
listen 9191;
server_name proxy.lab.local;
location / {
proxy_set_header Host $host;
proxy_set_heade
On Tue, Feb 15, 2022 at 08:38:07AM -0300, Carlos Renato wrote:
Hi there,
> Hello, I would like to use NGINX to balance traffic between two McAfee
> (standalone) proxy.
nginx as a server will listen for http or https requests; it does not "do"
http-proxy requests. (As in: it is not a http (forwar
Hello, I would like to use NGINX to balance traffic between two McAfee
(standalone) proxy.
I've made some advances and I'm able to open an HTTP page.
Now, I need the client to open an HTTPS request.
Em ter., 15 de fev. de 2022 às 00:54, Sergey A. Osokin
escreveu:
> Hi Carlos,
>
> hope you're d
Hi Carlos,
hope you're doing well.
On Mon, Feb 14, 2022 at 11:08:53PM -0300, Carlos Renato wrote:
> Hey guys,
>
> Can someone help me? I'm using NGINX to direct connections to two Proxy
> servers.
>
> I did a simple setup.
>
> upstream webgateway {
>server 192.168.239.151:9090;
>server
Hey guys,
Can someone help me? I'm using NGINX to direct connections to two Proxy
servers.
I did a simple setup.
upstream webgateway {
server 192.168.239.151:9090;
server 192.168.239.152:9090;
}
server {
listen 81;
server_name proxy.lab.local;
location / {
proxy_pass h
11 matches
Mail list logo