On Mon, May 11, 2020 at 06:36:10PM -0400, evulcu wrote:
Hi there,
> I'm trying to set up a reverse proxy with NGNIX on a Ubuntu Server. The
> upstream server is IIS configured with basic authentication working only as
> https since it has a 301 redirection configured on it.
what does
curl -ik
Hello,
I'm trying to set up a reverse proxy with NGNIX on a Ubuntu Server. The
upstream server is IIS configured with basic authentication working only as
https since it has a 301 redirection configured on it.
Here is my conf file
server {
listen 80;
return 301 https://$host$request_uri;
}
server