Я пытаюсь посетить установку SonarQube, которую я установил за веб-сервером Caddy. Когда я захожу на сайт, я не получаю ответа. Я пробовал проксировать 8999 (безопасный) и 9000 (небезопасный) с помощью Caddy.
https://52.176.62.43 {
tls self_signed
gzip
proxy / 127.0.0.1:8999
}
http://52.176.62.43 {
tls off
gzip
proxy / 127.0.0.1:9000
}
# Binding IP address. For servers with more than one IP address, this property specifies which
# address will be used for listening on the specified ports.
# By default, ports will be used on all IP addresses associated with the server.
sonar.web.host=127.0.0.1
# Web context. When set, it must start with forward slash (for example /sonarqube).
# The default value is root context (empty value).
#sonar.web.context=
# TCP port for incoming HTTP connections. Default value is 9000.
#sonar.web.port=9000
sonar.web.https.port=8999
curl -I https://52.176.62.43/
curl: (7) Failed to connect to 52.176.62.43 port 443: Operation timed out