mirror of
https://github.com/FiloSottile/mkcert.git
synced 2026-04-25 05:26:03 +03:00
[GH-ISSUE #465] having issue accessing https://localhost/ #297
Labels
No labels
TLS stack issue
Windows
bug
duplicate
duplicate
enhancement
help wanted
help wanted
pull-request
question
question
root store
waiting for info
No milestone
No project
No assignees
1 participant
Notifications
Due date
No due date set.
Dependencies
No dependencies set.
Reference
starred/mkcert#297
Loading…
Add table
Add a link
Reference in a new issue
No description provided.
Delete branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
Originally created by @gree303 on GitHub (Sep 8, 2022).
Original GitHub issue: https://github.com/FiloSottile/mkcert/issues/465
the installation ran without problems on my debian 10.
$ mkcert -install The local CA is already installed in the system trust store! 👍 The local CA is already installed in the Firefox and/or Chrome/Chromium trust store! 👍Furhter I imported the ssl into brave "Manage certificates".
It does show up within "others"
but for some reason I can not access localhost via https.
result: Unable to connect
any clue what I'm missing here? thank you.
@gree303 commented on GitHub (Sep 9, 2022):
I did import the .pem file into firefox and restarted it - no luck.
@gree303 commented on GitHub (Sep 9, 2022):
SOLVED: I had to put the information of the generated ssl as the virtualhost.
Example:
<VirtualHost *:443> ServerAdmin webmaster@localhost DocumentRoot /var/www/html/ SSLEngine on SSLCertificateFile /home/user/.config/ssl/local.crt SSLCertificateKeyFile /home/user/.config/ssl/local.key SSLCertificateChainFile /home/user/.config/ssl/local.ca-bundle </VirtualHost>Don't forget to restart apache2.