michael@wpmm22:~$ sudo certbot --apache -v
Saving debug log to /var/log/letsencrypt/letsencrypt.log
Plugins selected: Authenticator apache, Installer apache
In Godaddy, I can create a CSR with all my DNS names. I have been reading the certbot docs. I need to add my Fortinet 60E firewall to the LE cert with the 5 names. Where does it get these 5 names from? Can I modify the list?
Which names would you like to activate HTTPS for?
1: patrickmckenneylandscaping.com
2: www.patrickmckenneylandscaping.com
3: scsiraidguru.com
4: mc.scsiraidguru.com
5: www.scsiraidguru.com
Select the appropriate numbers separated by commas and/or spaces, or leave input
blank to select all options shown (Enter 'c' to cancel):
How can I add firewall.scsiraidguru.com to the list?
Ubuntu 22.04.3 LTS
Kernel 6.2.0-39-generic
Server version: Apache/2.4.58 (Ubuntu)
PHP 8.2.13
I added to the scsiraidguru.com conf file
<VirtualHost *:80>
ServerName firewall.scsiraidguru.com
Redirect permanent / https://firewall.scsiraidguru.com/
</VirtualHost>
firewall.scsiraidguru.com
now shows up on the list.
rg305
December 13, 2023, 8:35pm
4
There is no HTTPS vhost to redirect this to [yet].
2 Likes
This entry will be put on the Fortinet 60E firewall until Fortinet can get a solution. DNS Server on the firewall has the entry for firewall.scsiraidguru.com . With Godaddy, I just added it as a DNS entry in the cert.
I usually use this script to generate the CSR and Private Key
openssl req -new -sha256 -nodes -out \5Cert.csr -newkey rsa:2048 -keyout \5Cert.key -config <(
cat <<-EOF
[req]
default_bits = 2048
prompt = no
default_md = sha256
req_extensions = req_ext
distinguished_name = dn
[ dn ]
C=US
ST=Michigan
L=Clinton Township
O=Home
OU=Basement
emailAddress=mike.mckenney@scsiraidguru.com
CN = scsiraidguru.com
[ req_ext ]
subjectAltName = @alt_names
[ alt_names ]
DNS.1 = mc.scsiraidguru.com
DNS.2 = www.scsiraidguru.com
DNS.3 = firewall.scsiraidguru.com
DNS.4 = patrickmckenneylandscaping.com
DNS.5 = www.patrickmckenneylandscaping.com
EOF
)
I manually added the certificate to the Fortinet 60E. https://firewall.scsiraidguru.com :#### is working. Fortinet is working on a solution.
1 Like
system
Closed
January 13, 2024, 12:06am
8
This topic was automatically closed 30 days after the last reply. New replies are no longer allowed.