You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+13-22Lines changed: 13 additions & 22 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -94,11 +94,14 @@ You can remove everything inside `HTTPS_SERVER` and do whatever you like.
94
94
95
95
There are also helpers you can use in `S_SSL`
96
96
97
+
> [!NOTE]
98
+
> If you don't already have [`Node.js`](https://nodejs.org/en) installed then `start-windows.bat` will download the latest version of `node.exe` to the root folder
99
+
97
100
--------
98
101
99
-
### Default Structure
102
+
### Default Layout
100
103
101
-
This structure is designed to keep the project organized and maintainable, separating error handling, website content, and server configuration.
104
+
This layout keeps the project organized and maintainable, separating error handling, website content, and server configuration.
102
105
103
106
```
104
107
/root
@@ -114,15 +117,13 @@ This structure is designed to keep the project organized and maintainable, separ
114
117
│ │ ├── /jose
115
118
│ │ └── lets-encrypt-acme-client.js
116
119
│ │
117
-
│ ├── acmeKeys
118
120
│ ├── private-key.pem
119
121
│ └── certificate.pem
120
122
│ └── ssl.js
121
123
│
122
124
├── /website
123
125
│ └── index.html <---- Your website goes here
124
126
│
125
-
├── node.exe
126
127
├── server-ssl.js <--- server config
127
128
└── start-windows.bat
128
129
```
@@ -145,22 +146,12 @@ These pages will automatically select light/dark mode
Convert your `certificate` and `private key` to `PEM` format and place them in the `ssl` folder
161
150
162
-
--------
163
-
164
-
### Node.js
165
-
166
-
If you don't already have [`Node.js`](https://nodejs.org/en) installed then `start-windows.bat` will download the latest version of `node.exe` to the root folder
151
+
```
152
+
├── /ssl
153
+
│ │
154
+
│ ├── private-key.pem <--- Your private key goes here
155
+
│ └── certificate.pem <--- Your certificate goes here
0 commit comments