Skip to content

[2.0b] General (TLS) Test #16

@MincheolC

Description

@MincheolC

Issue

  • Torquebox가 사용하는 JBoss에 TLS 설정을 했으나 정상적으로 동작되지 않음.

Solution

  • https proxy를 띄워서 해결(우람 팀장님 조언: 참조 문서)

Change

key generation

https://portal.kyrio.com/

proxy.config

server {
    listen                     443 ssl;
    server_name                localhost;

    ssl                        on;
    ssl_protocols              TLSv1 TLSv1.1 TLSv1.2;
    ssl_certificate            ssl/TEST_RSA_VTN_181216180618_cert.pem;
    ssl_certificate_key        ssl/TEST_RSA_VTN_181216180618_privkey.pem;

    location / {
        proxy_pass          http://host.docker.internal:8080;
        proxy_set_header    Host      $host;
        proxy_set_header    X-Real-IP $remote_addr;
        proxy_set_header    X-HTTPS   'True';
    }
}

Test Harness properties

HTTP_Security=HTTP_SHA256_Security
HTTP_VTN_BaseURL=http://127.0.0.1:443
HTTP_VtnURL_Port=443

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