Skip to content

Commit b52fbb5

Browse files
committed
server-ssl.js
rename ssl.js to state.js /root │ ├── /error │ ├── 404.html │ └── 500.html │ ├── /ssl │ ├── /openssl │ │ │ ├── private-key.pem │ └── certificate.pem │ └── state.js │ ├── /wwwroot │ └── index.html <---- Your website goes here │ ├── server-ssl.js <--- server config └── start-windows.bat
1 parent c525201 commit b52fbb5

3 files changed

Lines changed: 2 additions & 2 deletions

File tree

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -112,7 +112,7 @@ This layout keeps the project organized and maintainable, separating error handl
112112
│ │
113113
│ ├── private-key.pem
114114
│ └── certificate.pem
115-
│ └── ssl.js
115+
│ └── state.js
116116
117117
├── /wwwroot
118118
│ └── index.html <---- Your website goes here

server-ssl.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
import { fileURLToPath } from 'url';
22
import { join, extname as _extname, dirname } from 'path';
33
import { createServer as createServerHTTPS } from 'https';
4-
import { STATE } from './ssl/ssl.js';
4+
import { STATE } from './ssl/state.js';
55
import { Api, Endpoint } from 'simple-api-router';
66

77
STATE.importRequiredArguments(dirname(fileURLToPath(import.meta.url)));
File renamed without changes.

0 commit comments

Comments
 (0)