Skip to content

Using https for UI #398

@AlekseyShu

Description

@AlekseyShu

Unfortunately doesn't work https on UI. Before UI using nginx. error: net::ERR_CONNECTION_REFUSED

nginx conf:

server {
server_name dldev.example.com;
listen 443 ssl;
ssl_certificate /etc/nginx/ssl/example.crt;
ssl_certificate_key /etc/nginx/ssl/example_key.txt;
ssl_prefer_server_ciphers on;
location / {
    proxy_set_header Host $host;
    proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
    proxy_pass http://dldev-int.example.com:8080;
}
#  ./init.sh --domain dldev-int.example.com    (if + --https same situation)
# nano docker-compose.yaml
in page RELEASE_VERSION: '2.7.0' change settings:
HC: 0
      HC_ENDPOINT: "dldev-int.example.com/build/"
      HC_PROTOCOL: "https"

Metadata

Metadata

Assignees

Labels

No labels
No labels

Type

No type

Projects

No projects

Milestone

No milestone

Relationships

None yet

Development

No branches or pull requests

Issue actions