You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Using nginx in front for SSL termination and proxy to the docker on 8080. The SSL scan completes and report generated, but the dynamic updating of progress output does not work. Would there be specific nginx proxy settings needed to get the repeat POSTS to /tools/testssl working?
Using nginx in front for SSL termination and proxy to the docker on 8080. The SSL scan completes and report generated, but the dynamic updating of progress output does not work. Would there be specific nginx proxy settings needed to get the repeat POSTS to /tools/testssl working?
`
server {
listen 443 ssl;
location / {
proxy_set_header X-Forwarded-Proto $scheme;
proxy_set_header Host $host;
proxy_set_header X-Real-IP $remote_addr;
proxy_http_version 1.1;
proxy_set_header Upgrade $http_upgrade;
proxy_set_header Connection "upgrade";
proxy_redirect off;
proxy_set_header Access-Control-Allow-Origin *;
proxy_pass http://127.0.0.1:8080;
}
}
`
The text was updated successfully, but these errors were encountered: