Skip to content

Commit e925dac

Browse files
committed
server-ssl.js
create production/staging folders in ssl folder ssl/production for production certificates/keys ssl/staging for staging certificates/keys the production certificate doesn't get deleted every time you use `--staging` combines with the previous commit to make sure the ARI always works updated the layout diagram /root │ ├── /error │ ├── 404.html │ └── 500.html │ ├── /ssl │ ├── /openssl │ ├── /production │ │ │ │ │ ├── ... │ │ ├── private-key.pem │ │ └── certificate.pem │ │ │ ├── /staging │ │ │ │ │ ├── ... │ │ ├── private-key.pem │ │ └── certificate.pem │ │ │ └── state.js │ ├── /wwwroot │ └── index.html <---- Your website goes here │ ├── server-ssl.js <--- server config └── start-windows.bat
1 parent 4a7ce1d commit e925dac

1 file changed

Lines changed: 6 additions & 4 deletions

File tree

README.md

Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -158,8 +158,10 @@ Convert your `certificate` and `private key` to `PEM` format and place them in t
158158

159159
```
160160
├── /ssl
161-
│ │
162-
│ ├── private-key.pem <--- Your private key goes here
163-
│ └── certificate.pem <--- Your certificate goes here
164-
│ └── state.js
161+
│ ├── /openssl
162+
│ ├── /production <> staging
163+
│ │ │
164+
│ │ ├── ...
165+
│ │ ├── private-key.pem <--- Your private key goes here
166+
│ │ └── certificate.pem <--- Your certificate goes here
165167
```

0 commit comments

Comments
 (0)