Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Continuation: Protect The Lounge with HTTPS #253

Merged
merged 4 commits into from
Oct 26, 2021
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 1 addition & 7 deletions _guides/https.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,13 +11,7 @@ The Lounge only has basic HTTPS support, and will need to be manually restarted

First, you need an HTTPS certificate. [Let's Encrypt](https://letsencrypt.org/) is a free, automated, and open Certificate Authority that provides completely free HTTPS certificates.

Assuming you have a valid email address at `email@example.com`, and want to serve The Lounge at `https://thelounge.example.com`, run these commands on your server:

```
git clone https://github.com/letsencrypt/letsencrypt
cd letsencrypt/
./letsencrypt-auto certonly --standalone --email email@example.com -d thelounge.example.com
```
**Visit**: The [Certbot Guide](https://certbot.eff.org/) website on how to correctly generate your free SSL certificate for each operating system.
Copy link
Member

@MaxLeiter MaxLeiter Oct 26, 2021

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

You can visit the [Certbot website](https://certbot.eff.org/) for instructions on how to correctly generate your free SSL certificate for each operating system.


Follow the instructions on screen. This should generate a private key, as well as your HTTPS certificate that will expire after 90 days.

Expand Down