I want to setup chef-server on internal network server and proxies Internet requests with existing nginx listening with public ip address.
This proxy already configured with true ssl certificates for chef server site with let’s encrypt. By default chef-server listen on 443 port (ssl). We can enable non ssl port with following part of config:
nginx['enable_non_ssl'] = true
nginx['non_ssl_port'] = "80"
This was done, but how to disable redirect from 80 to 443 port on chef-server machine in nginx ?
I need a help. Thank you.