我已经安装了 openvas9 并从证书商店安装了证书。然后我尝试使用 nginx 作为反向代理。我的 openvas 设置/etc/default/openvas-gsa
如下所示;
# Defaults for Greenbone Security Assistant initscript
# sourced by /etc/init.d/openvas-gsa
# installed at /etc/default/openvas-gsa by the maintainer scripts
# To disable HTTPS:
#
#HTTP_ONLY=1
# To enable http redirection:
#
HTTP_REDIRECT=1
# To set listening address:
#
#LISTEN_ADDRESS="0.0.0.0"
# To set listening port number:
#
PORT_NUMBER=4000
我的 nginx 配置/etc/nginx/sites-enabled/openvas
看起来像这样(显然更改了服务器名称);
server {
listen 443 ssl;
server_name vas.server.com;
location / {
proxy_set_header Host $http_host;
proxy_set_header X-Real-IP $remote_addr;
proxy_set_header REMOTE_HOST $remote_addr;
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
proxy_set_header X-FORWARDED-PROTOCOL $scheme;
proxy_pass http://localhost:4000;
}
}
我得到的只是一个502 Bad Gateway
. 我哪里错了?