Create temporary cert process so that nginx can start. Still need to figure out if/how certbot will attempt to renew domains in conf.d. Lowered the cert days in case it checks that.

This commit is contained in:
2023-07-05 21:17:14 -07:00
parent 8fa7adb2d3
commit cea611c81c
4 changed files with 33 additions and 10 deletions

View File

@ -33,8 +33,8 @@ server {
server_name example.com;
# The certs being used for the website.
ssl_certificate /etc/nginx/certs/example.com/cert.crt;
ssl_certificate_key /etc/nginx/certs/example.com/cert.key;
ssl_certificate /etc/nginx/certs/example.com/fullchain.pem;
ssl_certificate_key /etc/nginx/certs/example.com/privkey.pem;
# Send traffic to upstream server
location / {