Skip to content

Commit 1033718

Browse files
authored
Update README.md
Updating the SSL files path
1 parent d22854a commit 1033718

File tree

1 file changed

+4
-3
lines changed

1 file changed

+4
-3
lines changed

README.md

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -133,7 +133,7 @@ After running the command, enter your web app and admin web app domains separate
133133
panel.YOUR_DOMAIN admin.YOUR_DOMAIN
134134
```
135135
- The 'certbot' command generates `fullchain.pem` and `privkey.pem` in either `/etc/letsencrypt/admin.YOURDOMAIN.COM` or `/etc/letsencrypt/panel.YOURDOMAIN.COM`.
136-
- Create the `ssl` folder inside `/etc/nginx`
136+
<!-- - Create the `ssl` folder inside `/etc/nginx`
137137
```
138138
sudo mkdir /etc/nginx/ssl
139139
```
@@ -147,6 +147,7 @@ or
147147
sudo cp /etc/letsencrypt/live/admin.YOUR_DOMAIN/fullchain.pem /etc/nginx/ssl/
148148
sudo cp /etc/letsencrypt/live/admin.YOUR_DOMAIN/privkey.pem /etc/nginx/ssl/
149149
```
150+
-->
150151
<!-- - Required commands for SSL by Certbot:
151152
- Check the expiration date of your SSL certificates:
152153
```
@@ -195,8 +196,8 @@ http {
195196
ssl_protocols TLSv1 TLSv1.1 TLSv1.2 TLSv1.3; # Dropping SSLv3, ref: POODLE
196197
ssl_prefer_server_ciphers on;
197198
198-
ssl_certificate /etc/nginx/ssl/fullchain.pem;
199-
ssl_certificate_key /etc/nginx/ssl/privkey.pem;
199+
ssl_certificate /etc/letsencrypt/live/admin.YOUR_DOMAIN/fullchain.pem;
200+
ssl_certificate_key /etc/letsencrypt/live/admin.YOUR_DOMAIN/privkey.pem;
200201
201202
##
202203
# Logging Settings

0 commit comments

Comments
 (0)