Hello,
What should the nginx-conifg file look like default.conf?
In the browser, I get 502 Bad Gateway nginx/1.24.0 (Ubuntu).
default.conf
server {
listen 443 ssl;
listen [::]:443 ssl;
ssl_certificate /etc/nginx/certs/openvas.crt;
ssl_certificate_key /etc/nginx/certs/openvas.key;
}
location / {
proxy_pass http://localhost:9392/;
}
}
How to access the GUI?
Best regards