question-mark
Stuck on an issue?

Lightrun Answers was designed to reduce the constant googling that comes with debugging 3rd party libraries. It collects links to all the places you might be looking at while hunting down a tough bug.

And, if you’re still stuck at the end, we’re happy to hop on a call to see how we can help out.

PullRequest: Implementation #10700

See original GitHub issue

PR

#10700 - HTTPS via ENV

Additional Issues

  • Scenario 1 https default cert invalid => simply host a proxy with a valid cert and let him accept the other same for browser simply add the exemption local

  • Should ship default cert generation can not be guaranteed but we could offer a script for that anyway

Current Impl branch

Documentation

# Using Own Key relativ to process.cwd
# if SSL_CRT_FILE && SSL_KEY_FILE HTTPS=ture
HTTPS=true SSL_CRT_FILE=cert.crt SSL_KEY_FILE=cert.key

# Using Self Signed Cert that gets generated if it does not exist
# Using shipped developer Self Signed Cert 
HTTPS=true

Generate a cert and key delete the cert request.

openssl genrsa -out key.pem
openssl req -new -key key.pem -out csr.pem
openssl x509 -req -days 9999 -in csr.pem -signkey key.pem -out cert.pem
rm csr.pem

Issue Analytics

  • State:closed
  • Created 3 years ago
  • Comments:7 (3 by maintainers)

github_iconTop GitHub Comments

1reaction
frank-dspeedcommented, May 30, 2020

Sorry but when I do a PR I want to do it right as I am a senior-level engineer. I understand the side effects of such implementations before I even do them so I try to figure out all edge cases

0reactions
balazsorban44commented, Jan 30, 2022

This issue has been automatically locked due to no recent activity. If you are running into a similar issue, please create a new issue with the steps to reproduce. Thank you.

Read more comments on GitHub >

github_iconTop Results From Across the Web

Support Pull Request Updated - Website - Bitrise Discussions
How I would use it? When a PR is updated with a new commit based on PR comments/changes, I want the PR Build...
Read more >
[jira] [Updated] (SLING-10700) Improve TopologyRequestValidator ...
This method doesn't > implement a constant-time algorithm for comparing inputs. As a result, it may > allow an attacker to run a...
Read more >
January 2021 Galaxy Release (v 21.01) — Galaxy Project 22.05.1 ...
Implement expression tool for picking non-null values for CWL-style merging of conditional branches in native Galaxy workflows. Pull Request 10712.
Read more >
[JDK-8262889] Compiler implementation for Record Patterns
A pull request was submitted for review. URL: https://git.openjdk.java.net/jdk/pull/8516. Date: 2022-05-03 12:07:50 +0000.
Read more >
mp4 encode is flawed | OBS Forums
On my i7-10700K system with a NVMe drive, an OBS automated remuxing of a 11GB MKV ... Description Implementation for RFC obsproject/rfcs#51.
Read more >

github_iconTop Related Medium Post

No results found

github_iconTop Related StackOverflow Question

No results found

github_iconTroubleshoot Live Code

Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start Free

github_iconTop Related Reddit Thread

No results found

github_iconTop Related Hackernoon Post

No results found

github_iconTop Related Tweet

No results found

github_iconTop Related Dev.to Post

No results found

github_iconTop Related Hashnode Post

No results found