I'm trying to hide my QNAP NAS behind NGINX... without success.
With more attention I discover that with
server {
listen 80;
listen [::]:80;
access_log /var/log/nginx/reverse-access.log;
error_log /var/log/nginx/reverse-error.log;
location /qnap{
proxy_pass https://192.168.1.10;
}
}
wh
Hi GROUP !
I've a problem with NGINX (reverse proxy).
All work perfectly if I assign internal server to root:
server {
listen 80;
listen [::]:80;
access_log /var/log/nginx/reverse-access.log;
error_log /var/log/nginx/reverse-error.log;
location /{