i try to using diffirent port but sharepoint site get error:
ERR_EMPTY_RESPONSE
stream {
upstream ecm {
hash $remote_addr consistent;
server ecm.test.vn:80 weight=5;
server 10.68.8.182:80max_fails=3 fail_timeout=30s;
my design is : enduser --> nginx --> sites (sharepoint site:443, web:80;
443)
if server listen in 80 will redirect to 443
i try to use stream block but it can't use same port.
Posted at Nginx Forum:
https://forum.nginx.org/read.php?2,278737,278885#msg-278885
here is my issue,
i using nginx to reverse proxy for sharepoint site: ecm.test.com:80 and
redirect test.com:80 to https://test.com:443.
it show "nginx: [emerg] bind() to 0.0.0.0:80 failed (98: Address already in
use)"
Posted at Nginx Forum:
https://forum.nginx.org/read.php?2,278737,278753#msg-27
i try and it work but have new issue. Some site i need redirect from port 80
to 443 and it use same port 80 with sharepoint site
My code is:
events {
worker_connections 1024;
}
stream {
upstream ecm.test.com {
hash $remote_addr consistent;
server ecm.test.com:81 weight=5;
myserver requires NTLM authentication. I access myserver through nginx proxy
and provide correct auth info,but the browser prompt auth again.
Posted at Nginx Forum:
https://forum.nginx.org/read.php?2,278737,278738#msg-278738
___
nginx mailing list
ngin
Hi everyone,
I have issue with authentication when use nginx reverse proxy. it always
require input user/pass
my config file:
#
upstream test.com {
server test.com;
keepalive 16;
}
server {
listen 80;
server_name test.com;
location / {
I have a problem when i redirect sharepoint site, it get error "redirected
you too many times". I tried to clear cookie but not work
code:
user nginx;
worker_processes 4;
error_log /var/log/nginx/error.log warn;
pid/var/run/nginx.pid;
events {
worker_connections 1024;
}
http {
# R